0

I am using Tiny Slider with the customization showing Navigation as Thumbnails for one my project. What I am trying to achive is that the Navigation Thumbnail only show 1 image (the next one after the active slide) instead of all images in store. Any directions on how I should tackle this? Thank you all in advance for your help?

1 Answers1

0

I figured out the work around for anyone in the future that would have the same problem. I set the thumbnail in the tns-item and trigger the next button everytime I clicked the image. Here is the code:

jQuery(document).on('click', '.your-thumbnail-pic', function(event) {
event.preventDefault();
jQuery(".slider-next-arrow").click();
});