Announcement

Collapse
No announcement yet.

JS Thumbnail bar behaving strangely

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    JS Thumbnail bar behaving strangely

    I'm not sure if this is a bug or not, so I'm posting it here rather than in the bug report area. But I think there is something up with the jscript displaying more than 4 thumbnails properly.

    If you go to this page:
    http://www.ratsoundsales.com/p/bundle-davebass.html

    You can click on the four images normally. But if you use the "scroll" button for the images, then you can only click on the images above what is set as "main" until you scroll all the way back to the default view.

    I tested in several browsers and they all did the same thing. The behavior is consistent with other products too. For example: http://www.ratsoundsales.com/p/bundle-davesnare.html


    Any idea what's going on here? It's a minor issue as not very many products have more than 4 images at this point, but we are expanding some listings and were hoping to add more down the road.

    #2
    We have noticed this on occasion with the Levels ReadyTheme and it is something we are looking into. A quick fix is to disable the infinite scrolling by replacing the call in your scripts.js file with the following (around line 590):
    Code:
    $('#js-thumbnails').slick({
        vertical: true,
        draggable: false,
        infinite: false,
        slidesToScroll: 1,
        slidesToShow: 4
    });
    Matt Zimmermann

    Miva Web Developer
    Alchemy Web Development
    https://www.alchemywebdev.com
    Site Development - Maintenance - Consultation

    Miva Certified Developer
    Miva Professional Developer

    https://www.dev4web.net | Twitter

    Comment


      #3
      Awesome! That did it. Thank you very much Matt.

      Comment

      Working...
      X