Good news! I got it figured out. Guess I just needed to take a step away from the keyboard for a moment and look over what I had.
Here's the code taken from postbit_legacy:
Quote:
<div class="postdetails">
<div class="userinfo">
<div class="username_container">
<vb:if condition="$post['field6']"> <dd>{vb:raw post.field6}</dd></vb:if>
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<vb:else />
|
Where 'field6' is my custom field. Turned out this:
I changed it as follows:
Quote:
<div class="postdetails">
<div class="userinfo">
<div class="username_container">
<vb:if condition="$post['field6'] "$post['userid']">
{vb:raw post.field6}
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<vb:else />
|
And now I have what I was looking for:
Any critiques?
Now to get the text formatting to match