remondevries
5/7/2018 - 7:30 AM

Lightbox support

By adding this to your functions.php of your WooCommerce enabled theme. You be able activate the lightbox and slider + zoom function.

add_action( 'after_setup_theme', 'yourtheme_setup' );
 
function yourtheme_setup() {
  add_theme_support( 'wc-product-gallery-zoom' );
  add_theme_support( 'wc-product-gallery-lightbox' );
  add_theme_support( 'wc-product-gallery-slider' );
}