Thanks for the tip!
wpForo redirects to the page you were before login. But not after registration and login. This only works for login. There is no way do this for just registered and logged in users.
However if you set forum Registration mode without email confirmation it'll redirect to User Profile page.
I;m sorry but there is no option to customize redirection after the login.
In the meantime, I found out, this is not implemented right now. But you can implement it easily.
For this, there are only a small change inside the file wpf-includes.php/class-actions.php needed.
Currently, the line #376 is this:
if( WPF()->member->options['redirect_url_after_login'] ){
You can replace it with this three lines to implement this feature:
if(isset($_GET['redirect_to']) && $_GET['redirect_to']){
$redirect_url = $_GET['redirect_to'];
}elseif( WPF()->member->options['redirect_url_after_login'] ){
That's all. If I'm right, there is absolutely no security problem with this code. Additional no other admin will be bothered with this code.
If you implement this, you would make me very happy. I need this really. So if you don't implement it, I have to find another solution to implement this, and handling your further updates as well.
Yesterday, I completed the German language translation and sent it to you via email. That was a lot of work. Maybe you honor my work with this small change for me... 🙄