I built a flow with 1 question per step. The user is not logged during the flow and I don’t know how to pass the values of the user’s responses from the 1st step to the last step at which the user creates an account.
Example at this step I’d like to save the answer based on the button clicked by the user.
On the same workflow I added the value of the answer as an URL parameter to the page when I’m redirecting the user from step 1 to step 2 of the user flow.
Ah… sorry I didn’t realise you were doing this across multiple pages…
The only way to ‘send’ data from one page to another, at least in vanilla Bubble, is through URL parameters. Either that or store it directly in the database.
You could also use session/local storage if you don’t mind using a plugin or some simple. javascript…
That said, is there a need to do this across multiple pages? Can’t you do it all on the same page?
Yes I need to do this multipage structure for this test as I’m trying to learn about conversion rate between a one page long form (our current product) and this new flow with questions broke down into dedicated steps.
Regarding the options you mentionned:
Use URL parameters: I managed to do it between step 1 and step 2. But I did not manage to combine the URL params with and & symbol between each parameter. Any idea how to do it?
I’m going to try with this option checked “send current page parameters”
Do you know how the URL parameters can be used to create the user at the last step of my flow?
Store the user answer in the database: that would imply signing up the user when submitting the step 1 no? or there is a way to do an “invisible” signup?