• Resolved khrisme

    (@khrisme)


    Hi there,

    is it possible to exclude a specific page (or specific pages) where I do not want the fly cart to open when I click the add to cart button?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Henry N

    (@henrynguyen259)

    Hide the Fly cart on a special page.

    Php code snippets:

    add_filter( 'woofc_disable', function($flag){
    
        global $post;
    
        $exlude_posts = [8, 7, 3]; // id of posts
    
        if( is_page() ) {
            return in_array($post->ID, $exlude_posts);
        }
    
        return $flag;
    
    }, 99);
    Thread Starter khrisme

    (@khrisme)

    It works as expected, thank you, much appreciated.

    Rated 5 stars for sure. As well as other plugins of yours ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Exclude a specific page’ is closed to new replies.