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' );
}