Forum Login
-
Hello All,
The function below redirects new registered users to the forum page once they register.
Is their anyway to redirect users to a new page on registration (with thanks for registration and forum login).
Then redirect form thanks for register page back to forum once they login.add_filter('bbp_user_register_redirect_to', 'my_custom_redirect_function'); function my_custom_redirect_function($redirect_url) { $forums_url = bbp_get_forums_url(); return $forums_url; }
- You must be logged in to reply to this topic.