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.
Hi,
The default board is the board with the 0 ID. You cannot change or remove it.
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');