Hi,
I hope this is the right place to post this.
When I had multiple offer sliders on the same page, I had the issue that for every slider the thumbnails where the same. So Slider 1 had thumbnails a, b, c and Slider 2 (instead of having thumbnails d, e, f) also had thumbnails a, b, c.
This happened in version 15 and 15.4
I did fix this by changing the first lline of function mfnSliderOfferThumb_Pager(nr) in the /js/scripts.js file to only look for thumbnails inside the current container.
So:
var thumb = $('.offer_thumb').find('.offer_thumb_li.id_'+ nr +' .thumbnail img').attr('src');
changed to:
var thumb = $(this).closest('.offer_thumb').find('.offer_thumb_li.id_'+ nr +' .thumbnail img').attr('src');
Comments
so you are saying that your change is able to display 2 different offer sliders on same page?