Hey,

i cant disable the Product Image Zoom for Woocommerce in Wordpress with Snippset in the functions.php or Plugin.
Only a CSS Hack works... but not the best Solution.

this works...

.cloud-zoom-big, .cloud-zoom-lens, .cloud-zoom-tint, .cloud-zoom-soft {
    display:none!important;
}

this works not.. why ???
i try in wordpress theme functions.php and the functions.php for "woocommerce" in the theme.

function no_zoom() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
add_filter( 'woocommerce_single_product_zoom_enabled', 'no_zoom' );

or

add_filter( 'woocommerce_single_product_photoswipe_enabled', 'remove_wc_gallery_lightbox' );
function remove_wc_gallery_lightbox() { 
  remove_theme_support( 'wc-product-gallery-lightbox' );
}

please have you an correct snippset for themler templates ?

Hey, i cant disable the Product Image Zoom for Woocommerce in Wordpress with Snippset in the functions.php or Plugin. Only a CSS Hack works... but not the best Solution. this works... .cloud-zoom-big, .cloud-zoom-lens, .cloud-zoom-tint, .cloud-zoom-soft { display:none!important; } this works not.. why ??? i try in wordpress theme functions.php and the functions.php for "woocommerce" in the theme. function no_zoom() { remove_theme_support( 'wc-product-gallery-zoom' ); } add_filter( 'woocommerce_single_product_zoom_enabled', 'no_zoom' ); or add_filter( 'woocommerce_single_product_photoswipe_enabled', 'remove_wc_gallery_lightbox' ); function remove_wc_gallery_lightbox() { remove_theme_support( 'wc-product-gallery-lightbox' ); } please have you an correct snippset for themler templates ?

Last edited 31 August 2022 by @ITS