In the ACM Testimonials "Quote" on the home page of Helple, is there a way to make those quotes loop?
I have 2 current quotes on that page, an I can click the "dots" to get then to move to the next quote.
I wanted to see if they can "loop" too.
I looked at the file /templates/ja_helple/acm/testimonials/tmpl/style-1.php and it appears that "loop" is already "true"
<script>
(function($){
jQuery(document).ready(function($) {
$("#acm-testimonial-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
items: 1,
center: false,
margin: 30,
nav : false,
dots: true,
loop: true
});
});
})(jQuery);
</script>
Is there some other setting?
Thank you.