ova
New Member
Posts: 9
inherit
244555
0
Aug 10, 2017 14:43:00 GMT -8
ova
9
May 2017
ova
|
Post by ova on May 12, 2017 10:22:06 GMT -8
Hello,
I don't know if this is the proper forum to be posting in, but is there any way to add the avatar pictures of each member on the Members page of a forum by adjusting the coding/layout templates? I know they can be adjusted because I had removed something from there before. I don't remember what it was since it's been awhile, but I would only presume something can be added.
Thank you!
|
|
inherit
229600
0
Sept 7, 2022 11:09:51 GMT -8
Ben Goodman
96
February 2016
benhun
|
Post by Ben Goodman on May 23, 2017 5:47:53 GMT -8
If by user picture, you mean avatar, you can done this by adding:
$[user.avatar]
OR $[user.avatar_medium]
OR $[user.avatar_small]
Wherever you want it to appaer. Personally I replaced my:
<td class="name target">$[user]</td>
(Admin home - Themes - Layout templates - Members - memberlist) line, with:
<td class="name target"><table><tr><td>$[user.avatar_small]</td><td>$[user]</td></tr></table></td>
|
|