The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
HI..
Is it possible to show Avatar for each member in the Member Page ? |
#2
|
||||
|
||||
![]()
Just use <img src="avatar.php?userid=$userinfo[userid]">, although I'm not sure about the $userinfo variable, you'll have to see what's used in that template.
|
#3
|
|||
|
|||
![]()
HI..
This is the code in Memberlistbit. I try to add the code you give me as seen in the last 2 lines but there is no picture shown. If I remove the <td> ... </td> in the last 2 lines, the picture shown correctly but not in the table. It shows before the list of member. For ex. picture picture table list of member info. I want to add picture after last column (posts).. ..... <td bgcolor="#F1F1F1"><normalfont>$userinfo[datejoined]</normalfont></td> <td bgcolor="#DFDFDF"><normalfont>$userinfo[posts]</normalfont></td> <td bgcolor"#DFDFDF"<img src="avatar.php?userid=$userinfo[userid]"></td> |
#4
|
|||
|
|||
![]()
ok ok I got it.. It's my mistake because of the > in wrong place.
Thank you very much for your help.. |
#5
|
||||
|
||||
![]()
Actually, if you have predefined Avatars as well, use the following code on memberlistbit
template: <td bgcolor="second alt color"><img src="$avatarurl" border="0" align="middle"></td> instead. Then modify memberlist.php and add: // Avatar Hack if ($userinfo[userid]!=0) { $avatarurl=getavatarurl($userinfo[userid]); if ($avatarurl=='') { $avatarurl='images/space.gif'; } } // Avatar Hack Lastly, add Avatar as a column on the memberlist template |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|