Notifications
Clear all

[Solved] How set default board when using multiple boards

3 Posts
2 Users
0 Reactions
184 Views
Posts: 6
 Max7
Topic starter
(@max7)
Active Member
Joined: 3 months ago

I have two boards. In testing, using a separate non-admin browser (Brave for user testing), I go to my second board, then click Register. I go through the process. I receive the email confirmation. I copy the link from the email and open it in my testing browser. I set my password. It then always redirects me to the top level of the first board. I want the second board to be the default that they are always redirected to. How can I set that? I have tried using the "Custom Redirection URLs after following actions:" and cleared cache, but those settings have not changed any behavior.

2 Replies
Sofy
Posts: 4900
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi,

The default board is the board with the 0 ID. You cannot change or remove it.

Reply
Posts: 6
 Max7
Topic starter
(@max7)
Active Member
Joined: 3 months ago

Ok good to know. Thanks for your response.

In case anyone else would like to have this functionality, I was able to get a redirect to work by setting "Replace Reset Password Page URL to Forum Reset Password Page URL" to No, and then adding this Wordpress PHP code snippet:

function wpse_lost_password_redirect() {
    wp_redirect( '<desired URL>' );
    exit;
}
add_action('after_password_reset', 'wpse_lost_password_redirect');

Reply