[Resolved] Better access to our bbpress profile page

Home Forums Support [Resolved] Better access to our bbpress profile page

Home Forums Support Better access to our bbpress profile page

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #178148
    Pete

    Hi Tom, I always struggle to find my list of posts on this forum. There’s no easily viewable link to my bbpress profile page with all my created forum posts. The only way I know how to find the page is to tap on my gravatar to take me there… So I find myself running around the forum trying to track down a post of mine to find my gravatar. My suggestion is to have a highly visible link to our bbpress profile page after we login on the front support page.

    Cheers,
    Pete

    #178153
    Tom
    Lead Developer
    Lead Developer

    Good idea – I’ll see what I can do πŸ™‚

    #204847
    Max

    Tom

    The following snippet will add a “profile” link to the top right of the nav menu for anyone that is logged in:

    
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
    function my_nav_menu_profile_link($menu) { 	
    	if (!is_user_logged_in())
    		return $menu;
    	else
    		$current_user = wp_get_current_user();
    		$user=$current_user->user_login ;
    		$profilelink = '<li><a href="http://localhost/forum/forums/users/' . $user . '/edit">My Profile</a></li>';
    		$menu = $menu . $profilelink;
    		return $menu;
    }

    Kind Regards

    Max

    #204933
    Tom
    Lead Developer
    Lead Developer

    Nice! Thanks for sharing! πŸ™‚

    #205033
    Max

    Maybe you can rework it a little to put a my profile link in the side bar under your Login button…

    #205103
    Tom
    Lead Developer
    Lead Developer

    That’s the plan πŸ™‚

    #317725
    Pete

    Has this been implemented?

    #317739
    Tom
    Lead Developer
    Lead Developer

    Not yet, thanks for the reminder.

    #440077
    Pete

    ??

    #440162
    Tom
    Lead Developer
    Lead Developer

    Hasn’t been a priority as it’s quite easy to access as is. I haven’t forgotten, but major GP updates have been my complete focus lately.

    #737263
    Pete

    fixed thanks

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.