Woocommerce zoom feature - Remove

Hello
This is my website: https://redrive.dk/product/helbredsmaessig-koeretest/
I want to remove the zoom in feature by the product picture, is there an SCC code or another way I can remove this feature?

Hi There,

Please add the following code under functions.php file locates in your child theme:

add_action( 'after_setup_theme', 'remove_woo_features', 999 );
function remove_woo_features(){
	remove_theme_support( 'wc-product-gallery-zoom' );
}
1 Like