- Hiding Fields on the Checkout Page
- Installing WooCommerce
- Using WooCommerce
- Using Your Theme's Header & Footer in a Step
- Embedding a Checkout Form on the CartFlows Checkout Page
- Hiding WooCommerce Pages and Products
- Using Pricing Tables
- Adding an Affiliate Program
- Setting a Funnel as the Homepage
- GDPR Compliance
- Dynamic Offers aka Rule Engine
- Instant Layout for Checkout and Thank You Step
- Adding Products from the URL to the Checkout Page
- Setting Up A/B Testing for Steps
- Deleting Plugin Data During Uninstallation
- Importing Ready-Made Templates for Funnels and Steps
- Importing and Exporting Funnels and Step
- URL Parameters
- Replacing the Main Checkout Order with an Upsell or Downsell
- Rolling back to a Previous Version
- Google Address Autocomplete
- Flatsome UX Builder
- ActiveCampaign
- Paypal Reference Transactions
- How PaypPal/Stripe Works
- Enabling Enfold Avia Layout Builder
- Setting Up Authorize.net for Upsell & Downsell
- Supported Payment Gateways
- Setting Up A/B Testing with Google Optimize
- Setting Quantity and Discount for Products on the Checkout Page
- Adding Custom Payment Gateway Support for One-Click Upsell and Downsell
- Creating Subscription Products in WooCommerce for CartFlows Pages
- Supported Multi-Currency Plugins
- Enabling/Disabling Shipping Fields and Ship to Different Address
- Enabling/Adding Coupons on the Checkout Page
- Displaying Account Creation Fields on the Checkout Page
- Setting Up Square Gateway for Upsell & Downsell
- CartFlows Elementor Widgets
- CartFlows Beaver Builder Modules
- CartFlows Block Editor Blocks
- Importing Divi Templates
- Bricks Builder
- OttoKit
- Connecting Stripe Payment Gateway
- LearnDash
- Facebook Pixel
- How to Enable TikTok Pixel Tracking in CartFlows?
- Google Ads Pixel
- How to Enable Pinterest Pixel Tracking in CartFlows?
- How to Enable Snapchat Pixel Tracking in CartFlows?
- Funnel in Test Mode
- Troubleshooting Plugin and Theme Conflicts
- Resolving the "Please Select a Simple, Virtual, and Free Product" Error
- Fixing Endless Loading on the Checkout Page
- Fixing the "We can't seem to find an order for you." Error on the Thank You Page
- Fixing the "Checkout ID Not Found" Error
- Fixing the "Session Expired" Error Message
- Resolving "Order Does Not Exist" Error on Upsell/Downsell Page
- Fixing the "Sorry, This Product Cannot Be Purchased" Error
- Resolving "No Product is Selected" Error
- Disabling Auto-fill of Address Fields Based on Zip Code
- Enabling Theme's Scripts & Styles Without Changing Page Template
- Disabling Auto-fill of Checkout Fields
- Allowing Cache Plugins to Cache CartFlows Pages
- Changing the "Choose a Variation" Text
- VAT Field Not Displaying for WooCommerce EU/UK VAT Compliance Plugin
- Enabling the Product Tab on Store Checkout
- Displaying the Order Summary Open on Mobile Devices
- Refreshing the Checkout Page After CartFlows AJAX Calls
How to Enable Enfold Avia Layout Builder in CartFlows Steps?
By default, the Enfold theme’s Avia Layout Builder is not available on CartFlows steps. However, with a simple code addition, you can enable support and start designing your CartFlows pages using the Avia Builder.
Method 1: Add Code to Your Child Theme
Follow these steps to enable the builder by adding custom code to your child theme:
Step 1: Copy the Code Below
// Do not include this if already open!
/*
* How to add the custome code.
*
* Please follow below instructions:
* 1. Copy the below code.
* 2. Open your child theme's functions.php file.
* 3. Paste the copied code at the very bottom of it & save the file OR upload it on your server/hosting.
*/
/**
* Function to allow Enfold theme to edit the CartFlows pages using it's page builder.
*
* @param array $supported_post_types Array of supported post type by the theme.
*
* @return array $supported_post_types Modified array of supported post type by the theme.
*/
function avf_add_cartflows_post_type_in_theme( array $supported_post_types ) {
$supported_post_types[] = 'cartflows_step';
return $supported_post_types;
}
add_filter( 'avf_alb_supported_post_types', 'avf_add_cartflows_post_type_in_theme', 10, 1 );
add_filter( 'avf_metabox_layout_post_types', 'avf_add_cartflows_post_type_in_theme', 10, 1 );
Step 2: Paste Into Your Child Theme
- Go to Appearance > Theme File Editor
- Open your child theme’s
functions.php
file - Scroll to the bottom and paste the copied code
- Save the changes
Method 2: Use the Code Snippets Plugin
If you prefer not to modify theme files directly, you can use the Code Snippets plugin:
- Install and activate the Code Snippets plugin (free from WordPress.org).
- Create a new snippet and paste the same code shown above.
- Set the snippet to run on both front-end and back-end.
- Save and activate the snippet.
Here is a video tutorial on how to add custom functions to your website.
After applying either method, the Avia Layout Builder will be available for all CartFlows steps, allowing you to design your funnel pages with Enfold’s native builder.
We don't respond to the article feedback, we use it to improve our support content.