Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • in reply to: Add menu item to the Profile drop down menu #27440
     ElectroMagnetic
    Participant

    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;
    }
    
    in reply to: Add menu item to the Profile drop down menu #27439
     ElectroMagnetic
    Participant

    Thanks for that Abe.
    Do I string it in like this?

    COPY CODE
    
    add_filter('header_profile_dropdown', 'my_profile_link');
    function my_profile_link($links) {
    	$links[] = '<li><a href="http://thegiftvillage.com/help" rel="nofollow">Help</a></li>';
            $links[] = '<li><a href="' . bp_loggedin_user_domain().'profile/edit">Edit profile</a></li>';
    	return $links;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)

Log in with your credentials

Forgot your details?