Forums

Join
bbPress Support ForumsTroubleshootingShow login name

Info

Tags

Show login name

  1. I want to be able to show the currently logged in user's avatar with Avatar Upload as well as use Display Names. I cannot find a way to use the two the way I want to yet...
    Does anyone have a method?

  2. Replace line 194 in bb-avatar-upload.php
    $felidenticon = $identicon->identicon_build( $user->user_login, '', false, '', false );
    with
    $felidenticon = $identicon->identicon_build( (($user->display_name) ? $user->display_name : $user->user_login), '', false, '', false );

    PS. Just a quick guessing solution and I haven't used this plugin.

  3. I was just being an idiot, nevermind. I thought the ID field was for login name, but it was for the numerical ID, which I can get easily.

  4. You must log in to post.