Digital experiences for all disciplines
New Landing › How can we help? › Themeforest Theme Support › Dante › Deregister Revolution Slider scripts › Reply To: Deregister Revolution Slider scripts
July 17, 2015 at 2:57 pm
#195677
I need the scrips deregisted only on certain pages or on mobile for example in the code below
function denqueue_scripts_revslider_mobile() {
if ( wp_is_mobile() ) {
wp_dequeue_script( 'jquery.themepunch.tools.min' );
wp_deregister_script( 'jquery.themepunch.tools.min' );
wp_dequeue_script( 'jquery.themepunch.revolution.min' );
wp_deregister_script( 'jquery.themepunch.revolution.min' );
}
}
add_action( 'wp_enqueue_scripts', 'denqueue_scripts_revslider_mobile', 100 );