Sorry about the last post…grrrr had finger trouble…I meant this way
COPY CODE
add_filter('header_profile_dropdown', 'my_profile_link');
function my_profile_link($links) {
$links[] = '<li><a href="http://mydomain.com/help" rel="nofollow">Help</a></li>';
$links[] = '<li><a href="' . bp_loggedin_user_domain().'profile/edit">Edit profile</a></li>';
return $links;
}