We’re trying to create two different Registration paths on our site (Vendor and Requestor) and right now none of the redirection methods appear to work.
Everything works for creation of the account but the confirmation link resolves to the Email Confirmation page and then that is it (no redirection). We need Requestors to redirect to the submit request form and Vendors to the vendor form (or ideally plan selection first but we can work around that).
Unfortunately, there’s no such feature, it would require a custom implementation. If you are familiar with coding or have a developer, we can provide general guidance. However, please clarify whether this should be a redirect after email verification or after completing the registration form.
Either option really (redirect after registration or after email verification would be fine).
We experimented more on Friday and it appears that the block redirection works fine IF you don’t have email verification active. Otherwise, nothing happens.
So with email verification off we were able to create two registration pages (each with registration block and redirection to either create vendor or submit request).
This isn’t ideal of course as we’d like to confirm emails but we can use it as a work-around for now.
Thanks for the details. We recommend using hook hivepress/v1/forms/user_register. There you can set the redirect parameter depending on the condition, but please note that it is ignored if it is email verification, because the user is not activated without an email, and it is impossible to redirect them to the vendor registration (for this you need to be logged in, and if automatic login occurs immediately after email verification).
Alternatively, if you definitely need email verification, you can create a custom URL to redirect to and distribute it in the URL logic, but please note that this will require advanced customization.