Last active
October 29, 2022 04:21
-
-
Save elias1435/84467464164ab21159e0648fa124e4bb to your computer and use it in GitHub Desktop.
Remove zoom effect on WooCommerce Single product image | WooCommerce Gallery product images. use this code in your child theme functions.php
This file contains 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 remove_image_zoom_support() { | |
remove_theme_support( 'wc-product-gallery-zoom' ); | |
} | |
add_action( 'wp', 'remove_image_zoom_support', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment