PDA

View Full Version : Replace Member List field with image


yoximusprime
08-03-2012, 01:32 AM
I'm curious if I can replace the text in a member's list field with an image?

I did similar in the postbit using

<vb:if condition="$post['field7']">
<img src="http://xxx.org/forums/images/icons/{vb:raw post.field7}.png" alt="{vb:raw post.field7}" />
</vb:if>
<vb:if condition="$post['field6']">
<img src="http://xxx.org/forums/images/icons/{vb:raw post.field6}.png" alt="{vb:raw post.field6}" />
</vb:if>

To change the text of a custom profile field to an image. I simply want to repeat the process in the member's list but I can't find any way to do it.

Any ideas?