multi stage form

hey guys
Hi i have this issue with multi stage form
i upload an image of my site and heres the code i coppied
how can i apply this to my site?
thank you guys

// For full API documentation, including code examples, visit Velo API Reference - Wix.com

$w.onReady( function () {
//TODO: write your page related code here…

});

function showPassengers() {
$w(‘#slideshow’).changeSlide(0);
}

function showReviews() {
$w(‘#slideshow’).changeSlide(1);
}

function showConfirmation() {
$w(‘#slideshow’).changeSlide(2);
}

export function buttonConfirmAndContinue_click(event) {
//Add your code for this event here:
showReviews();
}

export function Confirmed(event) {
//Add your code for this event here:
showConfirmation();
}

1 Like

https://www.wix.com/code/home/example/Multistage-Form
Making sure that the code on your page matches up to your elements and datasets etc, also making sure that you use the full code and don’t miss anything out that could break the process.

Or make up your own:
https://support.wix.com/en/the-wix-editor/slideshows
https://www.wix.com/code/reference/wix-storage.html
https://www.wix.com/code/reference/wix-window.html

@givemeawhisky , by the way, I’ve never found a way to have a slideshow as a multistage form on mobiles. It looks like there’s no way to disable finger-scrolling between slides on touch screens.
(disabling the slide arrows and slide buttons doesn’t solve the problem).
Do you know any solution for that?

@jonatandor35 A work around is on slide change, if element(s) is empty (on previous slide) then move back to previous slide.

(This is the only thing that I have come up with so far)

@code-queen , really nice idea. From user experience perspective it’s not ideal, but it’s pretty good. Thanks.

On second thought. If you make the content of each slide hidden and collapsed by default and you show and expand it only if the previous slide has been filled in + your idea, then the user won’t even notice that the slide has been switched forth and back.
Thank you again!

@ givemeawhisky
hey !
first thank a lot
its literally the first time i use wix code.
so how do you match like you have said the code on my page up to my elements and datasets ?
thanks a lot.