Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ahmedeshaan/5e55dcbb32147c5abd3452fc8c2e4f35 to your computer and use it in GitHub Desktop.

Select an option

Save ahmedeshaan/5e55dcbb32147c5abd3452fc8c2e4f35 to your computer and use it in GitHub Desktop.
<?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