Answers for "how to disable product zoom in woocommerce astra"

PHP
0

woocommerce disable zoom on product image

/* 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 );
Posted by: Guest on February-04-2021
0

woocommerce disable product zoom

add_action( 'wp', 'custom_remove_product_zoom' );

function custom_remove_product_zoom() {
  remove_theme_support( 'wc-product-gallery-zoom' );
}
Posted by: Guest on April-06-2022

Code answers related to "how to disable product zoom in woocommerce astra"

Browse Popular Code Answers by Language