Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,002
- How-to & Troubleshooting
- 129,544
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,496
- Third Party Plugins
- 9,790
- Showcase
- 3,316
- Ideas
- 1,398
- Miscellaneous
- 9,169
-
There’s a small function floating around in the forum that should help you:
function oci_login_redirect($redirect_to, $set_for, $user){
$redirect_to = bp_core_get_userurl($user->id);
return $redirect_to;
}
add_filter('login_redirect', 'oci_login_redirect', 10, 3);
Just put that in your mu-plugins/bp-custom.php.
Credits goes to burtadsit.