Bring Your Business to Life › Support › Image Store › disable touch.jquery? › Reply To: disable touch.jquery?
May 4, 2013 at 1:00 am #52906
Keymaster
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 );