Quote:
Originally Posted by Big-K
Does anyone know what the right conditional for this would be in VB4?
Code:
<if condition="$post[usergroupid] == X"><img src="images/misc/supporter.gif"></if>
<!-- / Site Supporter Code -->
I tried the following but it inserts the image for everyone
Code:
<vb:if condition="is_member_of($bbuserinfo,X)"><img src="images/misc/supporter.gif"></vb:if>
|
Hi, i use this and is run
PHP Code:
<vb:if condition="$post[usergroupid] == 2 and is_member_of($post, 34)"><img src="images/ranks/ranksupporter.gif"></vb:if>
<vb:if condition="$post[usergroupid] == 19 and is_member_of($post, 34)"><img src="images/ranks/ranksupporter.gif"></vb:if>
<vb:if condition="$post[usergroupid] == 29 and is_member_of($post, 34)"><img src="images/ranks/ranksupporter.gif"></vb:if>
<vb:if condition="$post[usergroupid] == 30 and is_member_of($post, 34)"><img src="images/ranks/ranksupporter.gif"></vb:if>
I save my picture in ranks/picturename.gif - you must change this with your way to picture.