“WooCommerce -Produktbild -Zoom auf hover deaktivieren” Code-Antworten

WooCommerce -Produktbild -Zoom auf hover deaktivieren

/* 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 Deaktivieren Sie Zoom auf dem Produktbild

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

Ähnliche Antworten wie “WooCommerce -Produktbild -Zoom auf hover deaktivieren”

Fragen ähnlich wie “WooCommerce -Produktbild -Zoom auf hover deaktivieren”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen