Possiamo disabilitare la gallery del singolo prodotto di WooCommerce e gli script associati.
La soluzione รจ la seguente:
<?php
function my_disable_wc_gallery() {
global $post;
if ( is_product() ) {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
remove_theme_support( 'wc-product-gallery-slider' );
}
}
add_action( 'wp', 'my_disable_wc_gallery' );