Skip to content

Instantly share code, notes, and snippets.

@mtruitt
Created June 29, 2017 18:27
Show Gist options
  • Select an option

  • Save mtruitt/8169a460b56c7148087a7cd2fa96bd15 to your computer and use it in GitHub Desktop.

Select an option

Save mtruitt/8169a460b56c7148087a7cd2fa96bd15 to your computer and use it in GitHub Desktop.
WooCommerce Theme Support 3.X
<?php
add_action( 'after_setup_theme', 'wc_support' );
function wc_support() {
add_theme_support( 'woocommerce' );
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
@mtruitt

mtruitt commented Jun 29, 2017

Copy link
Copy Markdown
Author

Delcares WooCommerce support in third party themes.
Adds support for zoom, lightbox and slider in 3.X as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment