test
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • pavit Moderator
    #575685

    Hi

    Open this file templatesja_directoryacmslideshowtmplstyle-owl.php and edit the bottom of the fie in this way

    <script>
    (function($){
    jQuery(document).ready(function($) {
    $("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
    items: 1,
    nav : true,
    merge: false,
    mergeFit: true,
    autoplay: true,
    slideBy: 1
    });
    });
    })(jQuery);
    </script>

    kmkmedia Friend
    #575686

    Thank you! I have a few more questions, how do I make it repeat the slides once its done going through them? Right now it goes through all 4 slides but it won’t go back to the first and repeat them unless I manually click it.

    Also, how do I change the time in between each slide?

    Thank you for your help!
    Shaun

    pavit Moderator
    #575687

    Hi

    change the script in this way

    <script>
    (function($){
    jQuery(document).ready(function($) {
    $("#acm-slideshow-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
    items: 1,
    nav : true,
    merge: false,
    autoplay:true,
    autoplayTimeout:9000,
    mergeFit: true,
    loop:true,
    slideBy: 1
    });
    });
    })(jQuery);
    </script>

    The autoplay timeout will give you the time interval between 2 slides

    kmkmedia Friend
    #575800

    Worked perfectly. Thank you!

    pittigeteksten Friend
    #687208

    Does not work for me… See stereetviewpano.com

    pittigeteksten Friend
    #749087

    Does not work for me… See stereetviewpano.com

    pavit Moderator
    #687212

    <em>@pittigeteksten 493153 wrote:</em><blockquote>Does not work for me… See stereetviewpano.com</blockquote>

    Hi your webpage is not loading probably wrong address , could you please send me via Private Message also a temp super account to the backend so i will have a look at your module ?

    pavit Moderator
    #749091

    <em>@pittigeteksten 493153 wrote:</em><blockquote>Does not work for me… See stereetviewpano.com</blockquote>

    Hi your webpage is not loading probably wrong address , could you please send me via Private Message also a temp super account to the backend so i will have a look at your module ?

    Josh Friend
    #816520

    Should be…

    autoPlay:true,

    or

    autoPlay:3000,

    Notice the capital ‘P’

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

This topic contains 9 replies, has 4 voices, and was last updated by  Josh 8 years, 11 months ago.

The topic ‘Make slideshow autoplay’ is closed to new replies.