Hello,
I posted this on vb.com but a supporter tell me this should be good place to asking for this.
Well, I'm working to show some message on for normal member on Forum Home with groupid = 2 (that's my member group id). So, in the template file i added:
Code:
<vb:if condition="$bbuserinfo['usergroupid'] == 2">
My message
</vb:if>
But the message didn't show up.
However, if i change the usergroupid to any other groupid like 6 or 10... the message is display fine.
Code:
<vb:if condition="$bbuserinfo['usergroupid'] == 10">
My message
</vb:if>
This most likely to the notices module, but i need something unique for this message so i want to add it manually. Please help me to solve this.