Created
September 19, 2020 08:37
-
-
Save toptools/dd369df9473b5947cb4744456e6ab854 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
function wc_remove_image_effect_support() { | |
remove_theme_support( 'wc-product-gallery-zoom' ); | |
remove_theme_support( 'wc-product-gallery-lightbox' ); | |
remove_theme_support( 'wc-product-gallery-slider' ); | |
} | |
add_action( 'after_setup_theme', 'wc_remove_image_effect_support', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment