Created
July 24, 2023 19:24
-
-
Save artikus11/51c8f5f824da5788dad839b0cd35d885 to your computer and use it in GitHub Desktop.
Отключение лайтбокса и зума на странице товара WooCommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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