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

    (@marinmatosevic)

    Hi,

    on edit page in upper right corner you have targeting conditions. There you can choose on which set of pages you want to show/exclude popup.

    but if you want to exclude popup on only one page, then you could do something like this:

    put this code in functions.php file and replace name-of-your-page with your page slug.

    add_action( 'wp_print_scripts', 'spb_disable_popup', 100 );
    function spb_disable_popup() {
        if ( is_page('name-of-your-page') ) {
            wp_deregister_script( 'popup-script' );
        }
     }

    regards,
    Marin

    Thread Starter venky4c6

    (@venky4c6)

    Thank you very much Marin…

    It was asome ..working fine for me.

    thank’s a lot…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to block pop for particular page’ is closed to new replies.