Published
- 1 min read
woocommerce disable zoom on product image
The solution for this is noted below
woocommerce disable zoom on product image
Solution
/* Disable zoom on Woocommerce Product Images */
// Append to your child theme's functions.php
function remove_image_zoom_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );
Try other methods by searching on the site. That is if this doesn’t work