View Full Version : Put image under user title for different user groups?
CSS59
01-14-2007, 02:34 PM
< --How Can I put an image under the user title for each user group
I searched but no luck. Please point me to the hack if itÂ’s out there
Kirk Y
01-14-2007, 03:52 PM
Well the simplest way would probably be a template edit.
Search for in your respective 'postbit' template:
$post[usertitle]</div></if>
After add:
<if condition="is_member_of($post,6)">
<img src="images/group6member.gif" /></if>
<if condition="is_member_of($post,5)">
<img src="images/group5member.gif" /></if>
<if condition="is_member_of($post,4)">
<img src="images/group4member.gif" /></if>
CSS59
01-14-2007, 07:52 PM
aha, I knew simple if statements would do it. Thank you, I will give it a shot.
Thanks for your help :)
Kirk Y
01-14-2007, 08:13 PM
No problem.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.