Supporting member icon in postbit template?

Prea

New Member
Alright, so I'm trying to get a supporting member picture to show up in certain usergroup's postbit, under the aim icons.

I'm using the vertical postbit, so i'm putting the code into the postbit_legacy template.

I found this code
<if condition="is_member_of($post, x)">
<img src="$stylevar[imgdir_misc]/path/your_image.gif" border="0" alt="" />
</if>
And I changed the "x" to the usergroup id. I also changed the "path/your_image" to where the image is located.

But it's not showing up. Idk if it's because this code was made for VB 3.6, and i'm using 3.7.0. But I really need help trying to figure this out.

EDIT:
Ah, I got it to work using the following code
<if condition="is_member_of($post, 6)"><br><img src="images/misc/support.gif" border="0"></if>
 
Top