Reply To: disable touch.jquery?

Bring Your Business to LifeSupportImage Storedisable touch.jquery?Reply To: disable touch.jquery?

#52906
Xpark Media
Keymaster

@Dave,

you can remove “gallerific” safely if you disable the slideshow page and you are not using the shortcode slideshow option.

use the “wp_dequeue_script” hook in your theme or custom plugin

function mytheme_dequeue_scripts(){
wp_dequeue_script( 'ims-touch' );
wp_dequeue_script( 'galleriffic' );
}add_action( 'wp_enqueue_scripts','mytheme_dequeue_scripts', 100 );