• Resolved Gustav

    (@4ever16)


    Im trying to manipulate online usernames.

    I checked forum-online.php found the code which prints usernames.

    echo $this->asgarosforum->renderUsername($online_user);

    Im wondering how can i manipulate this code so it prints user description instead?
    Something like this but combine these two codes so it works.
    Can it be done?

    echo $this->asgarosforum->renderUsername($online_user);
    $userData->description

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @4ever16

    You can replace the following line:

    echo $this->asgarosforum->renderUsername($online_user);

    With:

    echo $online_user->user_description;

    In this case the user-description will be shown instead of the username.

    Thread Starter Gustav

    (@4ever16)

    Thanks works great!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Online users show description instead of name’ is closed to new replies.