Swiper Autoplay Issue Fix
User var swiper = new Swiper(".swiperslides", { slidesPerView: 3, spaceBetween: 30, loop: true, speed: 8000, autoplay: { delay:0,// Set a short delay for better autoplay handling disableOnInteraction: true, pauseOnMouseEnter:true, }, on: { beforeInit: function (swiper) { swiper.wrapperEl.style.transitionTimingFunction = "linear"; }, slideChangeTransitionEnd: function () { swiper.autoplay.start(); // Ensure autoplay continues }, }, breakpoints: { 0: { […]