Add the function below to your child theme functions.php file. [php]
// 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 );
[/php]
0 Comments