- Product Types
- Adding Products
- One Time Pricing
- Subscription Pricing
- Subscription Trials Setup
- Installment Pricing
- Donation / Pay What You Want
- Inventory Management
- Product Variants
- Variant Images
- Digital Downloads
- Change Product Availability
- Hide Product from Shop Page
- Template Customization
- Product Collections
- First-Time Payment Discounts
- Manage Product Access
- Payment Types
- Free Trials & Setup Fees
- Create Product With Free Trials
- Charge Set Up Fee on Trials
- Product List
- Product Pages
- Create Product Page in Elementor
- Custom Buy Links
- Product SEO
- Change Permalinks
- Custom Fields
- Adding Products
- Test Mode
- Make Test Payments
- Edit & Customize Form
- Change Form Template
- Delete SureCart Forms
- Custom Checkout Form
- Add New Checkout Form
- Checkout Form With Gutenberg
- Checkout Form in Elementor
- Custom Thank You Page
- Create Donation Form
- Customize Confirmation Popup
- Include Coupons in URLs
- Pre-Fill Checkout Fields
- Change Checkout Texts
- Password Field in Checkout
- Default Country Code
- Add Terms to Checkout
- Conditional Block Checkouts
- Remove Coupon Field
- Hide Quantity Option
- Disable Quantity Editing
- Disable Item Removal
- Country Specific Purchases
- Fix View Order Button
- Fix Express Payment Buttons
- Fix PayPal Test Connection
- Fix PayPal Test Connection
- Fix Sign-In Loop
- Fix Order Confirmation Redirect
- Fix Divi Bullet Point Issue
- Fix Customer Dashboard
- Fix JSON Response Error
- Failed Payment Behavior
- Fix Stripe Zip Code Error
- Fix "Product Can’t Be Blank"
- Troubleshooting Guide
- PayPal IPN Warning Emails
- Caching Configuration for SureCart
- Why iDEAL Might Not Appear in Your CheckoutÂ
How to Use SureCart 3.0 with Avada Builder
In SureCart 3.0 we need to do a couple more things to keep compatible with Avada builder.
Before moving forward, make sure that you have installed Avada Builder on your website.
How to Setup Shop Page
- Go to Pages list. Find the Shop Page and Edit it or Just Go to Shop Page from SureCart Sidebar.
- On the right side, Page Attributes section, select Template as SureCart.
- Now on the editor, remove the [sc_product_list] block and then re-add that element using Code Block.
- Find the Code Block
- Add a small CSS if Product images don’t look expected height –
.sc-product-item-link .wp-block-cover {
min-height: 400px !important; /* any minimum height */
}
- Save the post and visit frontend Shop Page and everything should work as expected for the shop page.
How to Setup Product Detail Page
- In Product edit page, Select template layout as SureCart Layout
- Save the Product and Your Product page should work as expected.
- Add the below script at WP-Code or any other header-footer script inject plugin.
add_action( 'wp_enqueue_scripts', 'sc_enqueue_avada_block_styles', 999999 ); // must be greater than 999.
function sc_enqueue_avada_block_styles() {
wp_enqueue_style( 'global-styles' );
wp_enqueue_style( 'wp-block-library' );
wp_enqueue_style( 'wp-block-library-theme' );
wp_enqueue_style( 'classic-theme-styles' );
}
If you have any more questions or face any issues, please feel free to reach out to our support team. We’re always here to assist.
Was this doc helpful?
What went wrong?
We don't respond to the article feedback, we use it to improve our support content.
On this page