Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created January 5, 2019 06:14
Show Gist options
  • Save ahmedeshaan/2112941d8a8c0ba4657a0fb317d7fc47 to your computer and use it in GitHub Desktop.
Save ahmedeshaan/2112941d8a8c0ba4657a0fb317d7fc47 to your computer and use it in GitHub Desktop.
<?php
function wvs_apply_only_product_page($default){
return function_exists('is_product') && !is_product();
}
add_filter('disable_wvs_enqueue_scripts', 'wvs_apply_only_product_page');
add_filter('disable_wvs_pro_enqueue_scripts', 'wvs_apply_only_product_page');
add_filter('disable_wvg_enqueue_scripts', 'wvs_apply_only_product_page');
add_filter('disable_wvg_pro_enqueue_scripts', 'wvs_apply_only_product_page');
<?php
function wvs_apply_only_product_page($default){
return function_exists('is_product') && !is_product();
}
add_filter('disable_wvs_enqueue_scripts', 'wvs_apply_only_product_page');
add_filter('disable_wvs_pro_enqueue_scripts', 'wvs_apply_only_product_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment