At WooThemes we have this cool plugin called WooSlider which basically allows you to create awesome sliders just about anywhere on your site, it is a powerful WordPress slideshow plugin yet simple to use.
One of the questions that has been popping up a lot lately in support is, how can I turn my WooCommerce product images on the single product page into a slideshow instead of displaying a normal image, well luckily with WooSlider this is a breeze to do.
You simply need to purchase and install WooSlider, then you need to place the code below into your theme’s functions.php file
<?php | |
add_filter( 'woocommerce_single_product_image_html', 'wc_product_image_slider' ); | |
function wc_product_image_slider() { | |
return do_shortcode( '[wooslider slider_type="attachments"]' ); | |
} | |
?> |