How to form a url to edit a form
-
I’m trying to edit a form that’s located on one of the pages that’s not a profile page.
To do so, I’m using the following URL:
<my_website>/form_page/?profiletab=main&um_action=edit
However, the problem is – after saving the form, the user is being redirected to his profile page, because of the URL parameter after the “?”.1. What if I wanted to redirect the user to a different page immediately upon completion of this form?
I’ve tried something like this:
<my_website>/form_page/?<another_page>&um_action=editIt lets the user edit the form, but it doesn’t let him save it – nothing happens when clicking on the “Update Profile” button.
2. Another related question is – how do I keep the person on the same page of the form (without redirecting to the profile page)?
Ideally, I’d like to have something like this:
<my_website>/form_page/?um_action=edit
And that’s it – the person would edit the form on this non-profile page, save it and see the resulting completed form without being redirected anywhere. Is it possible?
- The topic ‘How to form a url to edit a form’ is closed to new replies.