From what I have seen previously, with multi step applications, you usually have a url that looks like this: www.websitename.com/application/3942478 (applicant ID).
I can then use this applicant ID in Airtable to bind all the information together. The url does not change on each step, even though the UI changes.
Anyone who has thoughts about this, is it possible today?
And just to add on this as well: in the ultimate scenario, the forms does not actually send any information to the Airtable unless the person who is filling out the application form has done all the steps.
Users sign-in using the regular softr sign-in block and are redirected to an “onboarding page” with a tally.so form embedded.
I have an Airtable table where tally sends the collected information.
I have an Airtable automation that triggers when a new row is added to that table. It finds the corresponding user record_id in my user table and copies the info received in the form to that user’s row.
I had to pass the record_id of the user in the page URL of the “onboarding page” so the record_id can be added to the form as a hidden field.
the custom code to pass the record_id looks like this (just to be clear you paste this in softr as a custom code block on the page you want the form, instead of the code tally gives you):
I also created a user group for users that are “not onboarded”/“onboarded” where “not onboarded” people can basically only access that form on the entire app.
Doing this you can have multiple pages on your tally form but the user stays on the same page URL, and the info is not added to your airtable until the user completely finishes the application.
Hi Erik,
A subsequent explanation of what you can do.
You can use a Softr customizable form and grab the applicant ID (the user ID I guess?) by adding a hidden field. In this hidden field you will choose loggedin user recordID
Also note that you can use a single page for all your 3 onboarding steps.
In order to do this, you can create 4 user groups.
User group 1 which would be the group where onboarding step 1 is not complete. The condition would be that the last question of the onboarding step 1 would be empty
User group 2 which has successed in passing onboarding step 1. Condition would be that the last question of onboarding step 1 is not empty and the last question of onboarding step 2 is empty.
User group 3 which has successed in passing onboarding step 2. Condition would be that the last question of onboarding step 2 is not empty and the last question of onboarding step 3 is empty.
User group 4 which has successed in passing onboarding step 3. Condition would be that the last question of onboarding step 3 is not empty.
In your onboarding page you add three forms corresponding to the three onboarding steps. You set the visibility condition of each block accoridng to the right user group. The main setup to add is to choose the option, within form 1 and 2, Action => “open page”. You will choose the current page (so it will simply reload the page).
Form 3 will be set up with an action “open page” - the page you want them to go.
Just take them to that page with the tally form embedded. You don’t need to pass any info in the URL so no need to worry about the custom code or the Airtable automation I mentioned.