Re: How to: Add a new menu section
and to add more than one you can just add a new function and then add_action at the end like this
<?php
function add_test1_to_main_menu() {
echo '<li> <a href="http://yoursite.com/Url-of-test1/">Test1</a></li>';
}
function add_test2_to_main_menu() {
echo '<li> <a href="http://yoursite.com/Url-of-test2/">Test2</a></li>';
}
add_action('bp_nav_items', 'add_test1_to_main_menu');
add_action('bp_nav_items', 'add_test2_to_main_menu');
?>