Hi im trying now for days turning of the pause on hove on my slider.
I tried it with different settings one in the html code with data-hoverPause="false"
<div class="owl-carousel image-carousel carousel-widget" data-margin="200" data-nav="false" data-hoverPause="false"
data-pagi="false" data-items="1" data-autoplay="6000" data-loop="true">
<div class="oc-item">
<a href="#"><img src="images/slider1.1.webp" alt="Image 1"></a>
</div>
<div class="oc-item">
<a href="#"><img src="images/slider2.1.webp" alt="Image 2"></a>
</div>
<div class="oc-item">
<a href="#"><img src="images/slider3.1.webp" alt="Image 3"></a>
</div>
</div>
</div>An other aproach was in the plugins.carousel.js file to change autoplayHoverPause: !0 and elAutoPlayHoverP = !0;
(e.Defaults = { autoplay: !1, autoplayTimeout: 5e3, autoplayHoverPause: !0, autoplaySpeed: !1, }),
this one i changed elAutoPlayHoverP to false too
if (!elAutoPlay) {
elAutoPlay = false;
elAutoPlayHoverP = false;
} else {
elAutoPlayTime = Number(elAutoPlay);
elAutoPlay = true;
}The slider still pause the autoplay on hover, would be happy if anyone can help me?
