Archived topic
désactiver le zoom photo produit
5 replies · Started by Estelle on May 3, 2022
Bonjour, je n'arrive pas à trouver où je peux désactiver le zoom automatique sur les photos produits?
Merci
Hi Estelle,
You could try this PHP snippet recommended by Leo here: https://generatepress.com/forums/topic/desactiver-le-zoom-photo-produit/
Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets
Adding it through Code Snippets should work.
Hope this helps! Kindly let us know how it goes. :)
je suis sûre d'avoir vu ce réglage quelque part mais je n'arrive pas à le retrouver. Pourriez-vous m'indiquer où je peux trouver le réglage s'il vous plait?
Merci
Hi there,
you need to add this PHP Snippet to your website:
function remove_image_zoom_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );
This document explains how to add PHP:
c'est fait et cela fonctionne.
merci pour efficacité et rapidité comme toujours
You're welcome!