Add the function below to your child theme functions.php file.
// removing the product image rollover function remove_product_zoom_support() { remove_theme_support( ‘wc-product-gallery-zoom’ ); } add_action( ‘wp’, ‘remove_product_zoom_support’, 100 );

0 Comments