Stay updated on new items and changes to existing ones.
// Make hovering product thumbnails set the image as active.
jQuery(document).ready(function ($) {
var $gallery = $('.woocommerce-product-gallery');
if (!$gallery.length || typeof $.fn.flexslider === 'undefined') {
return;
}
$('.flex-control-thumbs').on('mouseenter', 'li', function () {
var index = $(this).data('slick-index');
if (typeof index === 'undefined') return;
// Tell FlexSlider to activate the slide
$gallery.flexslider(index);
});
});