“WooCommerce Product Image Zoom di Hover Nonaktifkan” Kode Jawaban

WooCommerce Product Image Zoom di Hover Nonaktifkan

/* 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 Nonaktifkan Zoom pada Gambar Produk

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

Jawaban yang mirip dengan “WooCommerce Product Image Zoom di Hover Nonaktifkan”

Pertanyaan yang mirip dengan “WooCommerce Product Image Zoom di Hover Nonaktifkan”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya