@jasonaring
Active 9 years, 8 months ago
-
bp-help replied to the topic Changing Page New Member Lands on After Activation in the forum Showcase 9 years, 8 months ago
@jasonaring
Untested but place the below code in bp-custom.php
function bp_help_redirect_to_members_page(){
if( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() ) {
bp_core_redirect( get_option('home') . '/members/' );
}
}add_action( 'template_redirect', 'bp_help_redirect_to_members_page',1);
Good…