Skip to content

Instantly share code, notes, and snippets.

@artikus11
Created July 24, 2023 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artikus11/51c8f5f824da5788dad839b0cd35d885 to your computer and use it in GitHub Desktop.
Save artikus11/51c8f5f824da5788dad839b0cd35d885 to your computer and use it in GitHub Desktop.
Отключение лайтбокса и зума на странице товара WooCommerce
add_action( 'after_setup_theme', 'art_remove_wc_lightbox_zoom', 100 );
function art_remove_wc_lightbox_zoom() {
remove_theme_support( 'wc-product-gallery-lightbox' );
remove_theme_support( 'wc-product-gallery-zoom' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment