Hi,
You can change templates/ja_megastore/acm/slideshow/tmpl/style-owl.php file as my suggestion below
find and change
(function($){
jQuery(document).ready(function($) {
$("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
items: 1,
singleItem : true,
itemsScaleUp : true,
navigation : true,
navigationText : ["<i class='fa fa-angle-left'></i>", "<i class='fa fa-angle-right'></i>"],
pagination: true,
paginationNumbers : true,
merge: false,
mergeFit: true,
slideBy: 1,
autoPlay: false
});
});
})(jQuery);
to
(function($){
jQuery(document).ready(function($) {
$("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
items: 1,
singleItem : true,
itemsScaleUp : true,
navigation : true,
navigationText : ["<i class='fa fa-angle-left'></i>", "<i class='fa fa-angle-right'></i>"],
pagination: true,
paginationNumbers : true,
merge: false,
mergeFit: true,
slideBy: 1,
autoPlay: true,
loop: true,
autoPlaySpeed: 5000,
autoPlayTimeout: 5000,
autoplayHoverPause: true
});
});
})(jQuery);
Regards