Quote:
Originally Posted by yellowchaser
How can this be used in the postbit so that all users avatars can be made a consistent size within the forums? What code and where would need to be replaced to make this work? I would assume the post_bit but not sure.
|
You will need to go into the postbit template via the VBulletin AdminCP template editor. Once you're in the postbit template (postbit templates > postbit), find where it outputs the user's avatar:
Code:
<if condition="$show['avatar']"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1=" $post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></if>
And replace it with:
Code:
<if condition="$show['avatar']"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]">$useravatar</a></if>
P.S. And thanks rmxs for the thank-you