Created
July 4, 2017 07:55
-
-
Save kreamweb/b88bae3b6ea479bbf6d0a81d908e363b to your computer and use it in GitHub Desktop.
Disable ajax search autocomplete on mobile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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