[Solved] How to make Slider AutoPlay in atlantic theme of shopify?
You could simulate clicks on the slideshows next button with Javascript / jQuery to get a autoplay like behavior: setInterval(function() { $(‘.slideshow .next’).click(); }, 5000); // <- slide show delay 0 solved How to make Slider AutoPlay in atlantic theme of shopify?