2
Need help? Book our fixed price WordPress Support service.
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' );
}