• Resolved creationhelper

    (@creationhelper)


    Hi,

    I just install our pluggin.
    I have a elementor website.
    I create a funnel with our pluggin. I choose a page .
    I don’t touch anything.
    You can see the result, my header is broken.
    I don’t want to have a header that’s why i choose our pluggin.
    Can you help me please
    Sonia

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support CartFlows Team

    (@cartflows)

    Hi @creationhelper ,

    From the link, it seems that it is a conflict with the theme. The theme is adding the header in an explicit manner i:e not using the proper WordPress standards.

    Due to which the header is getting loaded on the CartFlows pages.

    Here is a custom code to remove it from CartFlows pages. Please add this custom code into your currently active theme’s functions.php file at the very bottom of it.

    add_action( 'wp', 'remove_conflict_actions' );
    
    function remove_conflict_actions(){
    
        $post_type = get_post_type();
    
        if( 'cartflows_step' == $post_type ){
    
            remove_filter('template_include', array('Roots_Wrapping', 'wrap'), 99);
        }   
    }

    Let me know how it goes and feel free to get in touch in case you face any difficulty.

    Thread Starter creationhelper

    (@creationhelper)

    OMG, it’s working.
    Thank you so much

    Sonia

    Plugin Support CartFlows Team

    (@cartflows)

    Hello @creationhelper ,

    Thank you for your confirmation!

    I am happy that it is working fine for you.

    Feel free to get in touch in case you face any issues.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Elementor Page : header is broken’ is closed to new replies.