disable touch.jquery?

Bring Your Business to LifeSupportImage Storedisable touch.jquery?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #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 );
    #53009
    Dave
    Participant

    Perfect. Thank you very much!

    #53010
    Dave
    Participant

    There is a side effect to this though. The following javascript error occurs on page load:

    Error: TypeError: e(…).imstouch is not a function
    Source File: http://…/wp-content/plugins/image-store/_js/store.js?ver=3.2.7
    Line: 12

    However everything still seems to work.

    #53136
    Xpark Media
    Keymaster

    @ Dave,

    We added to code to prevent js erros if some javascript files are removed on version 3.2.9

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.