Cartflows

Hi

I'm wanting to give a try to the plugin "CARTFLOWS" for my checkout.

I see that by default I can use elementor, and other visual composers plugins (just need to activate on "stepts", where by default those plugin are just active on "pages")

Example: https://www.dropbox.com/scl/fi/0otxd25n15d4r54laypfa/Captura-de-ecr-2025-03-28-s-10.21.45.png?rlkey=dp2n5g51loxlvoxz873mx6p0d&dl=0


Can i do something similar with BeBuilder? I mean, being able to activate on "steps" which is the default page types for cartflows?


My website: jogodigital.com

Comments

  • Hi,

    To activate BeBuilder in a CPT, you must use this:

    // add in child theme functions.php
    add_filter('bebuilder_post_types','my_post_types');
    
    function my_post_types($post_types){
    	$post_types[] = 'my-custom-post-type';
    	return $post_types;
    }
    

    Best regards

Sign In or Register to comment.