Hi @romolo,
You can try with this tweak:
1) Go to file: /templates/uber/acm/slideshow/tmpl/style-3.php
2) At approx line 24:
<div id="acm-slideshow-pro" data-interval="<?php echo $autoplay; ?>" class="carousel slide <?php if($helper->get('enable-fade-effect')): ?>carousel-fade<?php endif; ?>" data-ride="carousel">
change it to:
<div id="acm-slideshow-pro" data-interval="2000" class="carousel slide <?php if($helper->get('enable-fade-effect')): ?>carousel-fade<?php endif; ?>" data-ride="carousel">
and change the ‘data-interval’ to your desired value, 2000 is milisecond value.
3) And remove the script at the end of file:
<?php if($autoplay != 'false'): ?>
<script>
(function($){
$(document).ready(function(){
var percent = 0, bar = $('.transition-timer-carousel-progress-bar'), crsl = $('#acm-slideshow-pro');
function progressBarCarousel() {
bar.css({width:percent+'%'});
percent = percent +0.5;
if (percent>100) {
percent=0;
crsl.carousel('next');
}
}
crsl.carousel({
interval: false,
pause: true
}).on('slid.bs.carousel', function () {});var barInterval = setInterval(progressBarCarousel, 30);
crsl.hover(
function(){
clearInterval(barInterval);
},
function(){
barInterval = setInterval(progressBarCarousel, 30);
})
});
})(jQuery);
</script>
<?php endif; ?>