Find the following line in your postbit_legacy :
Code:
{vb:raw template_hook.postbit_userinfo_right}
<div class="imlinks">
{vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
</div>
</vb:if>
Add your code:
Code:
<!-- Headset in postbit -->
<div class="pbit"><vb:if condition="$post['fieldX']">
Headset: <img src="images/headsets/{vb:raw post.fieldX}.png" alt="{vb:raw post.fieldX}">
</vb:if></div>
<!-- End Headset in postbit -->
Make sure the code is right before the last div tag before you get to the </div>
<div class="postbody">
It needs to look like this:
Code:
{vb:raw template_hook.postbit_userinfo_right}
<div class="imlinks">
{vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
</div>
</vb:if>
<!-- Headset in postbit -->
<div class="pbit"><vb:if condition="$post['field8']">
Headset: <img src="images/headsets/{vb:raw post.field8}.png" alt="{vb:raw post.field8}">
</vb:if></div>
<!-- End Headset in postbit -->
</div>
<div class="postbody">
I highlighted the last div tag that the code needs to be in between ....