Okay
  Public Ticket #2365239
Cannot get to another slide
Closed

Comments

  • Alen started the conversation

    Hi, How can I skip over the first slide once the last slide is completed. Example

    Start first at:

    Slide 1 then

    Slide 2 then

    Slide 3 then

    Slide 4 and then go back to Slide 2 (do not show slide one anymore)

  •  244
    Kreatura Support replied

    Hello Alen,

    Thank you for getting in touch with us!
    It is possible with a small custom javascript code.
    You should write this to your slider / Event callbacks / SlideChange events / slideChangeWillStart function:

    if( slider.data.slides.current.index == slider.data.slides.count && slider.data.slides.next.index == 1 ){
    return 2;
    }

    Best Regards,
    Andrea | Kreatura Support Team

  • Alen replied

    Thank you very much, it worked perfectly.

  •  244
    Kreatura Support replied

    You are welcome!

    Best Regards,
    Andrea | Kreatura Support Team