Hi guys, appreciate the input.
I've adjusted my syntax to remove the space in the vb:if, but it's not helping. I'm just confused because field10 is set up the same way, but that displays no problem. Would the fields' options have any impact on the display? ex if it's private, searchable, etc.
Code:
<vb:if condition="$post['field11']"><dd><img src="/images/ranks/{vb:raw post.field11}.png" alt="{vb:raw post.field11}" border="" /></dd></vb:if>
<vb:if condition="$post['field10']"> <dd> <img src="/images/buttons/flags/{vb:raw post.field10}.GIF" alt="{vb:raw post.field10}" border="" /> </dd> </vb:if>
The case and path for field11 (rank) are definitely correct. It works for most users (myself included). This is what it should look like (field9 has since been removed):
This is what it looks like to some users:
The user who gave me the last image there reports that the rank shows up properly when he is editing or replying to a thread, but if he's just browsing the forums, it's broken.
EDIT; Looks like I answered my own question. I had field11 set to Private, so it wasn't displaying in every case. Changing it to be not private fixed the issue. Thank you both for your help. It's greatly appreciated!