yan-k
4/8/2017 - 3:23 PM

Adding support for the new WooCommerce 3.0 gallery features

Adding support for the new WooCommerce 3.0 gallery features

<?php

add_action( 'after_setup_theme', 'yanco_after_setup_theme' );

function yanco_after_setup_theme() {
  add_theme_support( 'wc-product-gallery-zoom' );
  add_theme_support( 'wc-product-gallery-lightbox' );
  add_theme_support( 'wc-product-gallery-slider' );
}