Hey, sorry I didn't see the second edit in the instructions... for the MEMBERINFO template in VB4 look for:
Code:
<span id="userinfo">
<span class="member_username">{vb:raw prepared.musername}</span>
<span class="member_status">{vb:raw prepared.onlinestatus}</span>
<vb:if condition="$prepared['usertitle']">
<br />
<span class="usertitle">{vb:raw prepared.usertitle}</span>
</vb:if>
And put the "IF" beneath it.
However looking at the <IF> code I seriously doubt the code given in the instructions will work in MEMBERINFO...
The code given is:
Code:
<if condition="$post[usergroupid] == XX"><img src="images/misc/xxxxxxx.gif"></if>
And translated to VB4 is:
Code:
<vb:if condition="$post[usergroupid] == XX"><img src="images/misc/xxxxxxx.gif"></vb:if>
HOWEVER... $post is only available in the postbit template, it has no value in MEMBERINFO so I can't see how this would have ever worked...
I believe the correct code should be:
Code:
<vb:if condition="$vbulletin->userinfo[usergroupid] == XX"><img src="images/misc/xxxxxxx.gif"></vb:if>