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:

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

    Best regards

Sign In or Register to comment.