Created
January 5, 2019 06:14
-
-
Save ahmedeshaan/2112941d8a8c0ba4657a0fb317d7fc47 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 | |
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