I got this working this morning for POSTBIT and it's fairly simple (heck, I was able to figure it out and I can't find simple things

: )
So if you are looking to update the POSTBIT in Step 4, look for the following
Code:
<vb:if condition="$post['userid']">
<div class="userinfo_extra">
<dl class="userstats">
Add the code in Step 4 below this and following the Steps as mentioned by the author.
Something I did with mine is moved the Join/Post, etc into the first tab. This was my information that I moved into the first tab.
Code:
<vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></vb:if>
<vb:if condition="$post['field2']"><dt>{vb:rawphrase location_perm}</dt> <dd>{vb:raw post.field2}</dd></vb:if>
<vb:if condition="$post['age']"><dt>{vb:rawphrase age}</dt> <dd>{vb:raw post.age}</dd></vb:if>
<dt>{vb:rawphrase posts}</dt> <dd>{vb:raw post.posts}</dd>
{vb:raw template_hook.postbit_userinfo_right_after_posts}
Please make sure that you backup your POSTBIT before making any changes!!!!!
Once completed, your postbit should look like this when completed and working...