Browser: Chrome Latest, Edge Latest
OS: macOS & Windows
Hello,
I am currently operating a website that functions as a user dashboard. The main feature is a login form on the homepage, with the following “Actions”:
- User Login: This is associated with the user’s email and password.
- Redirect: The users are redirected to {wp_user_url}, a unique CPT linked to their accounts, where they can access personalized content.
This setup has been functioning seamlessly until the introduction of version v1-8-5. Interestingly, when I revert to v1-8-4, everything goes back to normal. However, the issue persists in v1-8-6 too.
I’ve tested this again and again and 100% is a bug. Please try to address this problem in your next release as this is critical to my workflow. Appreciate your prompt attention to this matter.
P.S. I also wanted to note that when this happens, the page will only reload with the current URL, but not redirect to the {wp_user_url} URL.
Thank you!
Hey Darius,
thanks for your report.
I am not sure I understand your setup. {wp_user_url}
returns the Website the user has set in his profile. Not sure how this is related to your custom CPT.

Can you please elaborate this a bit more and maybe provide a small screencast demonstrating (and explaining) the setup and the issue?
Best,
André
Hi @aslotta. Thanks for the reply. While attaching screenshots and a screencast here, I downgraded and upgraded the Bricks theme a few times from v-1-8-3 to v-1-8-6. And now it works. I don’t know why or how, but yeah
.
I still have one more thing on this issue. So, as I said I have a form on my homepage that has 2 Actions:
While the user inputs his Email and Password he is first Logged In, and gets the success message:
After that, the page doesn’t redirect, or reloads, or anything. But after the success message, the Email and Password form fields are empty.
In order to be redirected, the user has to fill those again. After clicking the login button again, it redirects to the {wp_user_url}.
Do you know if it’s possible to do both actions at the same time, when he clicks on login? To be logged in and redirected to whatever URL.
Hey Darius,
this won’t work as the dynamic data (wp_user_url
) is evaluated before the user is logged in. So it won’t be able to fetch the actual url which is assigned to the user’s profile.
You have to implement your own logic using a custom action in this case I think.
Best,
André