Last active
April 10, 2020 10:49
-
-
Save ahmedeshaan/5e55dcbb32147c5abd3452fc8c2e4f35 to your computer and use it in GitHub Desktop.
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 | |
| add_filter( 'disable_wvs_enqueue_scripts', function(){ | |
| // Load only product page. Return true to disable. | |
| return ! is_product(); | |
| } ); | |
| //Or | |
| add_filter( 'disable_wvs_enqueue_scripts', function(){ | |
| // Load only shop or prroduct page. Return true to disable. | |
| return ! (is_product() || is_shop()); | |
| } ); | |
| https://jasonbaciulis.com/wordpress-performance-optimization/?fbclid=IwAR2zypERwW27MtvlAJM13AzJA19kiMOoLhzPk27FwhvEVgmc159PEket94w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment