Re: How do I edit the BuddyPress Menu
Hi Zastrow,
As far as I know there’s not an explicit way to edit the links from the admin site.
Just to be clear, if you don’t use Forums and Groups, disabling them BuddyPress ‘components setup’ page will automatically remove them from the user menus.
I’m not sure how comfortable you are with theme modification, but for more fine-tuning (including adding pages), you can create a simple child theme and in the functions.php file create actions to modify the menus. You action might look like this:
function mytheme_add_top_pages() {
wp_list_pages( 'title_li=&depth=1');
}
add_action('bp_adminbar_menus','mytheme_add_top_pages');
Please, note, I have not tested the above function!