Skip to content

Instantly share code, notes, and snippets.

@corsonr
corsonr / disbale-woocommerce-3-lightbox.php
Last active June 20, 2018 07:17
Disable WooCommerce 3.+ lightbox
<?php // Do not include this if already open! Code goes in theme functions.php.
add_action( 'after_setup_theme', 'remove_wc_gallery_lightbox', 100 );
function remove_wc_gallery_lightbox() {
remove_theme_support( 'wc-product-gallery-lightbox' );
}