Auto-play in the Testimonials section

Support Forums Bogan – HTML template Auto-play in the Testimonials section

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #6409
    Joao Nivaldo
    Participant

    Is it possible to put an auto-play and timeout for the testimony session of home v3 as it is done in home v1 and v2? Thanks

    #6412
    CreaboxThemes
    Keymaster

    Yes, it’s possible too.

    You have to add the next js code in the file script.js. Where it’s the code for the testimonial slider, add the next code (about the line 545):

    setInterval(function() {
       var index = $(".testimonial-slider-group .testimonial.active").index();
       var next = ((index == testimonialMax) ? 0 : (index + 1));
       testimonialSlide(index, next);
    }, 5000);

    Regards

    #6414
    Joao Nivaldo
    Participant

    thanks

    #6416
    CreaboxThemes
    Keymaster

    Your welcome. If you need something more, contact me please.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.