Dodaj poniższy kod do pliku functions.php
function disable_wc_gallery_features() {
remove_theme_support( 'wc-product-gallery-zoom' ); // wyłącza efekt zoom
remove_theme_support( 'wc-product-gallery-lightbox' ); // wyłącza efekt lightboxa
remove_theme_support( 'wc-product-gallery-slider' ); // wyłącza slider
}
add_action( 'after_setup_theme', 'disable_wc_gallery_features', 11 );