This function removes the product image rollover on WooCommerce product pages.
/* removing the product image rollover BEGIN */
function remove_product_zoom_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_product_zoom_support', 100 );
/* removing the product image rollover END */