Closed (works as designed)
Project:
Site User List
Version:
6.x-1.0-beta1
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
3 Jul 2009 at 14:54 UTC
Updated:
8 Dec 2010 at 21:22 UTC
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
Comment #1
pooneil commentedHi,
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