I am totally stuck on how to implement a multi-step form using the new FormSnap4
I have gone through the manual and doesn’t seem to be a particular help section for setting up a multi-step form.
I just can’t get any head around it.
Should there be a multi-step stack in either the extra Packs 1 or 2 as I don’t seem to have it?
Has anyone implemented multi-step using FormSnap 4? I’ve setup multi-step forms in Formloom 4 just fine, but can’t work out how Mike has implemented this in FS4
Can anyone please provide a bit more detail and possible a few screenshots.
Hi @scottf you place the base formsnap stack, you add the fields you want for the first step, you click on the + button which adds a box for the second step in which you place the fields you want and so on… hope that helps
It is not an SMTP issue I know that is working…I’ve setup another form to test that on a different page using SMTP, that sends and receiving the e-mail. It is just the multi-step form that has fetch error.
It seems like the issue could be related to the number of steps in the form and the time allocated on the server to process the form submission. Formsnap 4 should support multi-step forms, but when there are too many steps or complex validation/conditions, it can exceed the server’s execution time.
You might want to check the PHP settings on your server, especially the max_execution_time value. Try increasing it to see if that resolves the timeout error. You can add this to your .htaccess file (if it’s accepted by your webhost):
php_value max_execution_time 60
Another approach would be to test the form step by step. Start with just one step, then gradually add more steps to see if there is a particular point where the error occurs. This way, you can identify whether it’s the number of steps or the complexity of validations/conditions that is causing the issue. 🤞