It would be great if the avatar could display in the same field as the user name. Perhaps an option on the user name field on the configuration page that allows the display of the avatar either above or below the name.

Comments

pooneil’s picture

Status: Active » Closed (works as designed)

Hi,

Eval templates should give you capability to do something like this. For example:
$account = user_load($r['@uid']); $avatar = theme('user_picture', $account); return $avatar . $account->name
will display the avatar and user's name in the same cell. You may need to do some extra work to get it to arrange/space the way you want and could use a theme function if necessary.
Also, another thing I've done is just keep the avatar in a separate cell but make the heading blank. If you set avatar to always be displayed, you won't get the blank checkbox in the display fieldset.

Regards,
Anthony