Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created August 2, 2021 23:42
Show Gist options
  • Save BruceMcKinnon/ee7fe365a1ee3abae923861e4005eb21 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/ee7fe365a1ee3abae923861e4005eb21 to your computer and use it in GitHub Desktop.
Woo disable product lightbox and zoom
//
// 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