Disable WooCommerce 3.+ Zoom

In WooCommerce 3.+ there’s a cool new feature: the zoom!

When you (h)over a product image when you’re on the single product page, you can zoom on the product images; I love this feature, however, some people would like to remove it. To do so, simply paste this snippet into your functions.php file, within the theme folder:

<?php
remove_theme_support( 'wc-product-gallery-zoom' );

This will remove the zoom feature from your product images.