Hi icerat
Please try this
Open file /templates/ja_cagox/acm/slideshow/tmpl /style-1.php
and look for this code :
<div class="style-1 block-slideshow carousel slide vertical <?php echo $fullScreen; ?>" data-ride="carousel" data-wrap="false" data-interval="false" id="block-slideshow-<?php echo $module->id; ?>">
then change the data-wrap and data-interval as below (you can increase data-interval value for longer delay) :
<div class="style-1 block-slideshow carousel slide vertical <?php echo $fullScreen; ?>" data-ride="carousel" data-wrap="true" data-interval="2000" id="block-slideshow-<?php echo $module->id; ?>">
Hope it helps