Skip to:
Content
Pages
Categories
Search
Top
Bottom

How does a member find their profile page?


  • ColorfulLady
    Participant

    @colorfullady

    I am using buddypress 2.1.1 with bbpress 2.5.4 on WP 4.1 with Wishlist Member. I would like to make it easy for forum members to find their profile and the forum member directory page. Is it possible to insert a link to these pages above the forums? I would prefer to have them somewhere internal to the forums and not in my navigation as this is a private membership site.

    Thank you for your input.

    Blair Massey

Viewing 3 replies - 1 through 3 (of 3 total)

  • danbp
    Moderator

    @danbp

    bbPress is a plugin outside of BuddyPress. You better ask for this on their support forum.

    You could also read the bbPress Codex.


    bp-help
    Participant

    @bphelp

    @colorfullady
    For Profile:

    
    if ( is_user_logged_in() ) {
    <a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>//link to users profile
    }
    

    For Members directory:

    
    if ( is_user_logged_in() ) {
    <a href="<?php echo home_url() . '/members/'; ?>">Members</a>//link to Member Directory 
    }
    

    You will need to find where in your template files you would like to place these examples and you may want to wrap them in a div for CSS styling purposes.


    ColorfulLady
    Participant

    @colorfullady

    Thank you. 🙂 I will look into that. I am not that adept in adding code to a page, but I will give it a whirl.

    Blair

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How does a member find their profile page?’ is closed to new replies.
Skip to toolbar