Snippet: Display Slider For WooCommerce Products With Variations
// Disabled by default for several reasons but can be enabled like such
function my_woo_product_slider() {
return true;
}
add_filter( 'wpex_woo_product_slider', 'my_woo_product_slider' );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)