Disable plugin on specific pages
-
I am trying to disable (turn off) plugin on specific pages but with no luck so far with my custom function:
add_action( ‘wp_enqueue_scripts’, ‘dequeue_mousewheel_smooth_scroll’ );
function dequeue_mousewheel_smooth_scroll() {
if ( is_page_template( ‘landing-page.php’ ) ) {
wp_dequeue_script( ‘mousewheel-smooth-scroll’ );
}
}Any idea how to do that?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Disable plugin on specific pages’ is closed to new replies.