Seems you posted twice !
https://buddypress.org/support/topic/where-i/
or do you mean the Dashboard ?
Hello,
actually I mean to merge content of members/single/settings/general.php and members/single/profile/edit.php.
My idea is to get custom BP profile fields (username) along with the email and password fields in the general settings tab.
When I copy plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/ to mytheme/buddypress/members/single/, those files don’t override plugin core files.
I just add that I could unset profile public tab:
/* remove subtabs*/
function remove_submenu_item() {
bp_core_remove_subnav_item( 'settings', 'profile' );
bp_core_remove_subnav_item( 'profile', 'public' );
}
add_action( 'bp_setup_nav', 'remove_submenu_item', 100 );
But I need to change the Profile landing subnav to avoid 404 page.
I found this piece of code but this only for main tab.
/**
* Change BuddyPress default Members landing tab.
*/
define('BP_DEFAULT_COMPONENT', 'profile' );