Re: Adding a Profile Button to Navigation
Put this in your functions.php.
`
add_action(“bp_nav_items”,”show_user_link”);
function show_user_link(){
if(!is_user_logged_in())
return;
?>
<a href="”>MY Profile
<?php
}
That should do it.
Edit: Please DO NOT USE THE CODE above, this forum has eaten the code, so that’s not going to work. Please see my post blow with the pestabin link.