Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created July 4, 2017 07:55
Show Gist options
  • Select an option

  • Save kreamweb/b88bae3b6ea479bbf6d0a81d908e363b to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/b88bae3b6ea479bbf6d0a81d908e363b to your computer and use it in GitHub Desktop.
Disable ajax search autocomplete on mobile
<?php
if( wp_is_mobile() ){
add_action( 'wp_enqueue_scripts', 'dequeue_script', 11 );
function dequeue_script(){
wp_dequeue_script( 'yith_wcas_jquery-autocomplete' );
wp_dequeue_script( 'yith_autocomplete' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment