Hi,
Is there a way to get the ACM Slideshow Style-1 on JA-Cagox to autoplay? I've searched the forum and found solutions from other themes, but they're clearly different, with no autoplay (nor even "owl") mentioned in those solutions in the ACM template php.
Autoplay ACM slideshow
- Edited
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