Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,019
- How-to & Troubleshooting
- 129,640
- Creating & Extending
- 25,793
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,791
- Showcase
- 3,316
- Ideas
- 1,382
- Miscellaneous
- 9,179
-
Step 1 can be accomplished (I believe) with the following code:
function override_bp_core_settings_nav{)
remove_action('wp', 'bp_core_add_settings_nav',2);
}
add_action('init', 'override_bp_core_settings_nav');
add_action('wp', 'YOUR_SETTINGS_NAV',2); // this is where you would add your new nav
This is untested, but hopefully it gives you some pointers.