Missing postbit items?

After upgrading from 3.5.4 to 3.6.4 and upgrading the skin from v2 to v3 I am now missing the post count, online status and location from the Postbit.

Those things were all there before the upgrade.

Is this something I'm failing to set up in my vB setup options? Or a problem with the skin?

Thanks

Paul Green

PS. Looking in the source code and the XML code those items seem to be commented out? I'm sure I'm just missing something obvious. Got any suggestions? Thanks.

<!-- <if condition="$post['field2']">

<tr>

<td align="right" class="desc" width="50%">$vbphrase[location_perm]:</td>

<td align="left" width="50%">$post[field2]</td>

</tr>

</if> -->

<!-- <if condition="$post['age']">

<tr>

<td align="right" class="desc">$vbphrase[age]:</td>

<td align="left">$post[age]</td>

</tr>

</if> -->

<!-- <tr>

<td align="right" class="desc">$vbphrase[posts]:</td>

<td align="left">$post[posts]</td>

</tr>

<tr>

<td align="right" class="desc">Status:</td>

<td align="left">$post[onlinestatus] $post[iplogged]</td>

</tr> -->

#441955

Update. I fixed it by removing the comment tags.

I tried that first and it didn't seem to fix anything. Which is why I posted my question.

But then I remembered that I was using the Legacy postbit and that was a different template. So, I found that template and removed the comment tags and those items all came back.

Why do you have that info commented out?

Thanks

#441965

Yes they're commented out by default, simply remove the around the items you want to use, its like that cause by default vbulletin shows everything, and it looked kinda funny while developing the skin to have all that info.

#441966