Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajeshsingh520/64dcb16dd3be32c733d6854c5114ceb0 to your computer and use it in GitHub Desktop.
Save rajeshsingh520/64dcb16dd3be32c733d6854c5114ceb0 to your computer and use it in GitHub Desktop.
Disable preference popup plugin on specific page
<?php
add_filter('pisol_dppp_enable_popup', function($value){
if(is_page(334)){ // this will disable the preference popup on page 334
return false;
}
return $value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment