Hi,
Sorry for the delayed reply. I wasn’t getting the email notifications it seems from WordPress ??
These filters “easy_notification_bar_is_enabled” and “easy_notification_bar_settings” are specifically added for developers. So if you aren’t a developer you don’t have to worry about them. These are added so that developers can add custom code into their child theme’s to modify the way the notification works.
For example if you wanted to enable the notification for the homepage only you can add code like this to your child theme:
add_filter( 'easy_notification_bar_is_enabled', function( $enabled ) {
if ( ! is_front_page() ) {
$enabled = false;
}
return $enabled;
} );
These are standard filters so there really isn’t a need for an explanation as any developer that knows WordPress would know how to use them.
Make sense?