I want to disable image zoom for certain individual products (virtual products, bookable services actually)
How is this possible?
I want to disable image zoom for certain individual products (virtual products, bookable services actually)
How is this possible?
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
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.