Re: defult submenu on profile page
Are you using `bp_core_new_nav_item` ?
If you set the position to any value less than 10, it should work since Activity’s position is 10.
`
bp_core_new_nav_item( array(
‘name’ => ‘Your Item’,
‘slug’ => ‘yourslug’,
‘position’ => 9, // Activity is 10, so any value lower than 10 should work
‘screen_function’ => ‘your_screen_function’,
‘default_subnav_slug’ => ‘your_default_subnav_slug’,
) );
`