TruthElixirX
Member
I would like the background of a user's post to change according to their usergroup. What I mean is
If user is group A, their background looks blue to everyone.
If user is group B, their background looks red to everyone.
This doesn't work, it just makes the background appear changed to every post when a user from that group views it. On vBulletin I did:
Is there something similar for XenForo?
If user is group A, their background looks blue to everyone.
If user is group B, their background looks red to everyone.
Code:
<xen:if is="{xen:helper ismemberof, $visitor, x}">
This content will show to members of user group x
</xen:if>
This doesn't work, it just makes the background appear changed to every post when a user from that group views it. On vBulletin I did:
Code:
<if condition="is_member_of($post, 5,7)">
Is there something similar for XenForo?