Quote:
Originally Posted by Thamelas
Maybe you guys can help me. I have vBulletin 3.7.4 Patch 1.
I am trying to make an image display in Postbit Legacy based on the users answer to a question in their profile, but I can't seem to get it to work. Can you guys tell me how to get this working?
Below is the code I have tried adding to the Postbit Legacy Template:
Code:
<if condition="$post['field11']"><div class="smallfont">$post<img src="/images/misc/[field11].gif" /></div></if>
|
I think it should be
Code:
<if condition="$post['field11']"><div class="smallfont"><img src="/images/misc/$post[field11].gif" /></div></if>