Is there a way for you all to make the carousel on the home page automatically scroll?

    Hi stimulus

    You can edit this file: root/templates/ja_vega/acm/hero/tmpl/style-1.php

    Look for the script at the end of file:

    <script>
    (function($){
    jQuery(document).ready(function($) {
      $("#acm-hero-wrap-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
        addClassActive: true,
        items: 1,
        margin: 0,
        loop: true,
        nav : false,
        dots: <?php echo ($count > 1) ? 'true' : 'false' ;?>,
        autoplay: false
      });
    });
    })(jQuery);
    </script>

    and change the autoplay: true

      6 days later

      Thanks saguaros. Do you know if this will also allow for it loop instead of stopping once it reaches the end?

        Write a Reply...
        You need to Login to view replies.