Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Ninja Lead Moderator
    #972343

    Hi,

    You can change templates/ja_megastore/acm/slideshow/tmpl/style-owl.php file as my suggestion below

    find and change

    (function($){
      jQuery(document).ready(function($) {
        $("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
          items: 1,
          singleItem : true,
          itemsScaleUp : true,
          navigation : true,
          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: false
        });
      });
    })(jQuery);

    to

    (function($){
      jQuery(document).ready(function($) {
        $("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
          items: 1,
          singleItem : true,
          itemsScaleUp : true,
          navigation : true,
          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: true,
          loop: true,
          autoPlaySpeed: 5000,
          autoPlayTimeout: 5000,
          autoplayHoverPause: true
        });
      });
    })(jQuery);

    Regards

    marco17 Friend
    #973569

    Hi Ninja Lead,

    Great!!! It works perfect.

    MANY THANKS.

    Marco

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  marco17 8 years, 1 month ago.

The topic ‘How to set slideshow to auto’ is closed to new replies.