Categories
CSS Wordpress

Remove image zoom feature from woocommerce products

function remove_image_zoom_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );

 

Leave a Reply