• pediaf

    (@pediaf)


    I have in the post, 2 categories, blog and another additional one, I would like to know if it is possible to hide the button in only one of those categories or if this is not possible, how to hide it in all post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter pediaf

    (@pediaf)

    There is really no solution for this??? I just need to hide the floating icon in a category

    Plugin Author xootix

    (@xootix)

    Hello @pediaf

    Please use this snippet and replace the category slug with yours

    add_filter( 'xoo_wsc_is_sidecart_page', function($ispage){
    if( is_category( array( 'cat-slug', 'another-cat-slug', 'uncategorized' ) ) ){
    $ispage = false;
    }
    return $ispage;
    } );
    Thread Starter pediaf

    (@pediaf)

    Hi, thanks. Can you tell me where I can add that snippet? I tried adding it to functions.php but it doesn’t work.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.