Owl Carousel: Cannot Change 'autoPlay' delay

So I’m using Owl Carousel on this site in hopes to change the delay between slides (scroll down to Testimonials). From what I understand, I should just be able to set ‘autoPlay: 8000’ and that should create an 8-second delay between slides. Well I’m not getting that when I use this:

    <script>
        $(".quotes-p").owlCarousel({
        //Autoplay
        autoPlay: 8000
        )}
        </script>

Instead there still seems to be a 5-second delay between the slides transition.

Did I miss the boat on modifying this or should this be modified using the transition in CSS?

1 Like

Yes, that seems right, but there’s a small typo in your code:

You should invert those in a way that the options closing curly bracket comes before the oweCarousel’s method closing parenthesis, so:

$(".quotes-p").owlCarousel({
  //Autoplay
  autoPlay: 8000
});

That will work. :smile:

2 Likes

DOH!

thanks for the good eye!

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.