Created
August 2, 2021 23:42
-
-
Save BruceMcKinnon/ee7fe365a1ee3abae923861e4005eb21 to your computer and use it in GitHub Desktop.
Woo disable product lightbox and zoom
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
// | |
// Disable the Woo lightbox | |
// | |
add_action( 'after_setup_theme', 'bl_disable_wc_lightbox', 100 ); | |
function bl_disable_wc_lightbox() { | |
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