@bridieamelia
	Active 5 years, 9 months ago
	
	- 
	
	Henry Wright replied to the topic [Resolved] Redirect from members page to profile page in the forum How-to & Troubleshooting 11 years, 1 month ago Hi @bridieamelia, Try this: function redirect_members_page() {
 if ( bp_is_user_profile() && ! bp_is_my_profile() ) {
 $user = get_userdata( get_current_user_id() );
 wp_redirect( home_url() . '/members/' . $user->user_login . '/profile/' );
 exit;
 }
 }
 add_action( 'template_redirect', 'redirect_members_page'…