How to remove zoom effect from Woocommerce

0
175

Do you wish to disable the zoom effect on the Woocommerce products images?

I like it much more without it… so this is what you need to write so you can disable it

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

LEAVE A REPLY

Please enter your comment!
Please enter your name here