How do I disable image zoom for individual products?

I want to disable image zoom for certain individual products (virtual products, bookable services actually)

How is this possible?

1 Like

Hi There,

It’s not possible. You can disabled the zoom image for al products only.

Please try adding this custom 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' );
}

Hope it helps :slight_smile:

3 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.