Skip to content

Instantly share code, notes, and snippets.

@chetansatasiya
Created February 9, 2018 12:36
Show Gist options
  • Select an option

  • Save chetansatasiya/709ae39252137afaa60cc6fd14ecebf5 to your computer and use it in GitHub Desktop.

Select an option

Save chetansatasiya/709ae39252137afaa60cc6fd14ecebf5 to your computer and use it in GitHub Desktop.
Disable the WooCommerce 3.+ default lightbox
<?php
add_action( 'after_setup_theme', 'cs_remove_woo_gallery_lightbox', 100 );
function cs_remove_woo_gallery_lightbox() {
remove_theme_support( 'wc-product-gallery-lightbox' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment