Not exactly. But you can try this:
1) Disable Navigation
2) In the Advanced Options section, set Pagination to True.
That will display pagination dots below your carousel which will navigate all of your images like pages, instead of the navigation which is one at a time.
Thanks!
Nope, when you do that, the autoplay doesn’t work.
That’s true, can’t do pagination and autoplay. Owl Carousel itself does support that option, but I haven’t built it into this plugin yet — honestly because this is the first request for it.
I need to do some general cleanup of the options in general anyway, so when I do that I’ll look into adding this feature.
I added it to my Issue Tracker here:
https://github.com/mathetos/foogallery-owl-carousel-template/issues/2
Thanks!
HI there,
Rather than add this as another setting to the plugin, I’ve added a filter to allow users to add their own custom Owl Init rules to customize their carousels further. For this feature you can add the following filter into your theme’s functions.php file or a custom functionality plugin:
add_filter('foogallery_owl_custom_init', 'add_autoplay_timeout');
function add_autoplay_timeout() {
return "slideBy: 2,";
}
Thanks!