Hello mako2,
There is a way to make the slideshow rotating automatically.
To make it possible, you will need to make changes in ‘swap_images.js’ file which resides in zwoom plugin’s directory.
In ‘swap_images.js’ change the following line:
jQuery('.bxslider').bxSlider({speed: 800, setWrapperwidth: jQuery(".images").width(), setChildrenWidth: (parseInt(object_name.thumbnail_image_width)), moveSlideQty: 1, prevImage: object_name.previous_image , nextImage: object_name.next_image, hideControlOnEnd: true, infiniteLoop: false, distanceBetweenControlImages: 20});
with
jQuery('.bxslider').bxSlider({speed: 800, setWrapperwidth: jQuery(".images").width(), setChildrenWidth: (parseInt(object_name.thumbnail_image_width)), moveSlideQty: 1, prevImage: object_name.previous_image , nextImage: object_name.next_image, hideControlOnEnd: true, infiniteLoop: false, distanceBetweenControlImages: 20, auto:true});
Making above changes will make slider rotate automatically but that will only rotate images in slider and it will not automatically change image in main image box as slider rotates.
Thanks,
WisdmLabs