Forms only submit from the page they are embedded on. You can't have a multi-page form send the user to a different page when they click Next to move to the next page in the form. It's not how multi-page forms work.
If you want a form on the homepage to send the user to a form on another page then you would have to do this with 2 separate forms.
You would create a form specifically for the homepage. You would then configure it so that when it's submitted it's confirmation settings are set so that it redirects to the URL where the second form exists, and you can then configure it to pass field values to that page so it can pre-populate form fields on the second form.
So you may need to create the same fields that exist on the first form on the second form so that you can include all the data on the second form. You could then simply ignore the entries for the first form and only look at the entries fully completed via the second form.
Here is another forum posts that discusses how to pass field data from one form to another using the redirect and query string:
http://www.gravityhelp.com/forums/topic/how-to-send-parameters-from-one-from-to-another#post-4695
So basically you can't do this with a multi-page form. You can only do this using 2 completely separate forms.
Posted 14 years ago on Tuesday November 8, 2011 |
Permalink