Hide Floating Bar on Archive Pages
-
Hi, I’m using the addtoany_sharing_disabled filter to hide the floating bar on pages (I just want to display it on posts). However, I’m finding that I can’t get it also hide on archive or category pages.
Here’s the code I’m using:
function addtoany_disable_sharing_on_my_custom_post_type() { if ( is_page() || is_archive() || is_category() ) { return true; } } add_filter( 'addtoany_sharing_disabled', 'addtoany_disable_sharing_on_my_custom_post_type' );
Any ideas on why this doesn’t work? I double checked the back end settings for the plugin and it’s not set to show anywhere.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Hide Floating Bar on Archive Pages’ is closed to new replies.