'Owl carousel not looping

Having what seems like a very basic problem but can't figure out what I'm doing wrong, I'm building an owl carousel and can't get it to loop. I am on the newest version 2.0.0-beta.2.4. My plugin configuration is:

$(document).ready(function() {

  $(".owl-carousel").owlCarousel({
    loop: true,
    navigation : true, 
    autoPlay: true,
    autoplayTimeout: 500,
    autoplayHoverPause: true,
    touchDrag: true,
    dots: true,
    slideSpeed : 300,
    paginationSpeed : 400,
    singleItem: true,
    pagination: true
  });

});

I have 5 items in my slide as of now.



Solution 1:[1]

Please download the newset version 2.1.4 - https://github.com/OwlCarousel2/OwlCarousel2

The singleItem and other options are not supported, please check items and documentation http://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1