tolja
Hi
Open
file "/acm/testimonials/tmpl/style-1.php" in template "ja_sensei".
Find
<script>
(function($){
jQuery(document).ready(function($) {
$("#acm-testimonial-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
rtl:<?php echo($dir == 0) ? 'false' : 'true' ;?>,
items: 1,
center: true,
margin: 200,
dots: true,
loop: true
});
});
})(jQuery);
</script>
replace it with
<script>
(function($){
jQuery(document).ready(function($) {
$("#acm-testimonial-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
rtl:<?php echo($dir == 0) ? 'false' : 'true' ;?>,
items: 1,
center: true,
margin: 200,
dots: true,
loop: true,
autoplay:true
});
});
})(jQuery);
</script>