Is it possible to auto-play the Testimonials (ACM) within JA Alpha?
I see this come up time and time again, across multiple templates and usually resolve by editing (specific to alpha): templates\ja_alpha\acm\testimonials\tmpl\style-1.php
<script>
(function($){
jQuery(document).ready(function($) {
$("#acm-testimonial-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
items: 1,
addClassActive: true,
itemsScaleUp : true,
margin: 180,
nav : true,
navText : ["<i class='fas fa-arrow-left'></i>", "<i class='fas fa-arrow-right'></i>"],
dots: false,
slideby: 1,
autoPlay: 3000
});
});
})(jQuery);
</script>
eg changing autoPlay: false to autoPlay: 3000
but I still have no joy - no autoplay. Any tips?
Thank you.