Skip to content

Instantly share code, notes, and snippets.

@Bobz-zg
Created April 23, 2017 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bobz-zg/e845b04efd6075006f709cd9873e95f4 to your computer and use it in GitHub Desktop.
Save Bobz-zg/e845b04efd6075006f709cd9873e95f4 to your computer and use it in GitHub Desktop.
Enable Gallery in single product template in WooCommerce 3.0
<?php
/**
* WooCommerce 3.0 gallery fix
*/
add_action( 'after_setup_theme', function () {
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment