I did the trick:
Add this to function.php:
function bbg_change_profile_tab_order() {
global $bp;
$bp->bp_nav[‘profile’][‘position’] = 10;
$bp->bp_nav[‘activity’][‘position’] = 60;
$bp->bp_nav[‘friends’][‘position’] = 40;
$bp->bp_nav[‘notifications’][‘position’] = 20;
$bp->bp_nav[‘settings’][‘position’] = 50;
$bp->bp_nav[‘messages’][‘position’] = 30;
}
add_action(‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );
And put this to bp-custom.php (if not existing, add a new file to wp-content/plugins/
<?php
/* define the default Profile component */
define(“BP_DEFAULT_COMPONENT”,”profile”);// Now when you click on a user name link, You will land on User’s profile not user’s activity page
?>