Replies: 0
I have a form with a hidden field ({hidden-1}). A hidden field has as default value Submission ID. After submitting, the form should be redirected to a URL.
https://example.com/step-2/?entry={hidden-1}
How it behaves: the form is always redirected exactly to this URL.
https://example.info/step-2/?entry=submission_id
Literally. I mean the parameter value is not a real ID but a string “submission_id“. Why? I would expect, that redirection should be something like:
https://example.info/step-2/?entry=1234
where 1234 is the ID of the submission.
Does it work as desired?