[URGENT] How to add image before Username?

ahsan

New Member
How can i add image before a specific user group ? i ahve manually added the image before Usergroup name in User Group Manager, but it only show in Forum stats,
i want that image to be displayed before each member's username, in a specific group, in postbit..

i mean,,

when someone posts, and he is admin group, and admin group is having an image of crown, then the crown must show before his name, in each post??

Plz em stuffed, help me, how can i do this ?

is there nay mod ???
 

EviL_WaLdO

New Member
its called user ranks.
its a default.
add them in admincp->usergroup->edit->description add html code of your image.
save.
Click Thanks ;)
 

saram1805

New Member
You can insert images or anything into your postbit or almost any other template for one usergroup only using the conditional:

Code:
<if condition="is_member_of($bbuserinfo, [color=Red]x[/color], [color=Red]y[/color], [color=Red]z[/color])">[color=Red]Code you want to show to usergroups x, y and z[/color]</if>

x, y, z etc are the IDs of the usergroups in the usergroup manager (admins are typically usergroup 6)

Edit: Sorry, reread it, you want to display stuff if the POSTER is a member of certain usergroups, not the viewer.

Code for that in your postbit (or postbit_legacy) is:

Code:
<if condition="is_member_of($post, [color=Red]x[/color], [color=Red]y[/color], [color=Red]z[/color])">[color=Red]Code[/color]</if>
 

ChopSuey

New Member
Put In HTML Markup
<img src=http://www.site.com/album/picture.jpg> (Put That In First Box)
<img> (Second Box)
 
Top