That works. I came across this post as well:
http://www.vbulletin.com/forum/showp...0&postcount=11. Just change the field number. Here's an example:
Code:
<td><if condition="$post[field6] != '0'">
<if condition="$post['field6']&1"><img src="URL HERE"><br />
</if>
<if condition="$post['field6']&2"><img src="URL HERE"><br />
</if>
<if condition="$post['field6']&4"><img src="URL HERE"><br />
</if>
<if condition="$post['field6']&8"><img src="URL HERE"><br />
</if>
<if condition="$post['field27']&16"><img src="URL HERE"><br />
</if>
<else />
<em>$vbphrase[n_a]</em>
</if></td>
Thanks so much!!!