Turn off Product Featured Image Zoom in WooCommerce 3 Print

  • WooCommerce
  • 0

To remove the product featured image zoom effect in WooCommerce 3 at the following into your child theme:

add_action( 'after_setup_theme', 'remove_product_image_zoom', 11 ); 
function remove_product_image_zoom() {
    remove_theme_support( 'wc-product-gallery-zoom' );
}


Was this answer helpful?

« Back

Powered by WHMCompleteSolution