How to enable carousel arrow s and auto scrolling.
$(document).ready(function() {
$("#news-weekly-product-slider").owlCarousel({
items: 5,
itemsDesktop: [1370, 4],
itemsDesktopSmall: [1199, 3],
itemsMobile: [600, 1],
navigation: true,
navigationText: ["", ""],
pagination: true,
autoPlay: true
});
});
Enables navigation arrows should be true.
autoplay: true: Enables automatic playback of the carousel.
pagination: true : Enables pagination (dots indicating the current slide).