Disable gallery zoom and prevent loading jquery.zoom.js
lib
add_filter('woocommerce_single_product_zoom_enabled', '__return_false');add_action('after_setup_theme', function () { global $_wp_theme_features; unset($_wp_theme_features['wc-product-gallery-zoom']);});