“WooCommerce Product Image Zoom on Hover Disable” Réponses codées

WooCommerce Product Image Zoom on Hover Disable

/* Disable zoom on Woocommerce Product Images */

// Append to your child theme's functions.php
function remove_image_zoom_support() {
    remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );
Intra

WooCommerce Désactiver Zoom sur l'image du produit

add_filter( 'woocommerce_single_product_zoom_enabled', '__return_false' );
Old-fashioned Osprey

Réponses similaires à “WooCommerce Product Image Zoom on Hover Disable”

Questions similaires à “WooCommerce Product Image Zoom on Hover Disable”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code