I\'m building a wordpress site with a JQuery carousel using the Owl Carousel 2 JQuery plugin. I\'ve used this carousel before with success, but I\'m stumped on this one and
This is what you need to do, when you call the owl-demo / owl-carousel you need to add
| autoPlay: 3000 | (----- 3000 = 3sec rotation between images.
You don't need to touch anything else.
$(document).ready(function() {
var owl = $("#owl-demo");
owl.owlCarousel({
navigation : false,
singleItem : true,
autoPlay: 3000,
transitionStyle : "fadeUp"
});
});