- This topic has 1 reply, 2 voices, and was last updated 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
<i>Come posso togliere la possibilità di zoomare le foto dei prodotti?</i>
grazie
Hi Cecilia,
At first, thank you for choosing our theme and service.
Unfortunately, this option is controlled by the Woocommerce plugin not with the theme options, in order to remove the mentioned options, please contact the woocommerce support team or search for the solutions online.
If you know how to use custom PHP codes on the website, please navigate to Dashboard > Theme Editor and paste this code to the functions.php file:
function remove_image_zoom_support() {
remove_theme_support( ‘wc-product-gallery-zoom’ );
}
add_action( ‘wp’, ‘remove_image_zoom_support’, 100 );
Kind Regards