Quote:
Originally Posted by Bomyne
... is there a way to add that to the postbit template to show a special image or title if the user is in this usergroup?
|
Yes, just edit the postbit or postbit_legacy template and add something like:
Code:
<vb:if condition="is_member_of($bbuserinfo, X)">
// code for image
</vb:if>
By the way, you can include more than one usergroup if you want, by listing the ids, like:
Code:
<vb:if condition="is_member_of($bbuserinfo, 5, 6, 7)">
...