Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wpexplorer

    (@wpexplorer)

    Hi,

    You can use the PHP filter “easy_notification_bar_is_enabled” to control the display. Example:

    add_filter( 'easy_notification_bar_is_enabled', function( $enabled ) {
    if ( is_page( 'energy-transmission-workshop' ) ) {
    return false;
    }
    return $enabled;
    } );

    This code would be added in a child theme functions.php file or via a code snippets plugin.

    Or you can just add a little custom CSS to your site like this:

    body.page-id-31807 .easy-notification-bar {
    display: none;
    }
    Thread Starter avadhut2013

    (@avadhut2013)

    Thank you. It worked ??

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