Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Default Activity Streams Are Backwards IMHO


John James Jacoby
Keymaster

@johnjamesjacoby

/* Bounce user to their profile when logging in */
function custom_login_redirect_to_profile( $url, $isset, $user ) {
return bp_core_get_user_domain( $user->ID );
}
add_filter( 'login_redirect', 'custom_login_redirect_to_profile', 11, 3 );

You could also make a child theme of your own, and use home.php as members/single/activity.php. Or instead of using home.php, make a custom page template and assign that page as your front page.

Skip to toolbar