Display notification bell on blog page only

Hello,

I was wondering if webspushr have the option to disable the notification icon on everyother page except on certain pages e.g Blog page. Is there any code or option for this?

Hi,

Try adding the following code in your theme’s function.php file

add_action('wp','hide_webpushr_bell');
function hide_webpushr_bell(){
	if ( !is_front_page() && is_home() ) {
		?><style>#webpushr-prompt-wrapper.webpushr-subscribed{display:none;}</style><?php
	}
}