Hello The slideshow shows dot navigation instead of numbers and does not auto play.
This is the code currently
<script>
(function($){
jQuery(document).ready(function($) {
$("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
addClassActive: true,
items: 1,
singleItem : true,
itemsScaleUp : true,
navigation : false,
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: 9000
});
});
})(jQuery);
</script>