Considering that info is already in the postbit you want it pulled and placed in the dropdown instead?
That being the case, here's what you do.
In postbit_legacy find:
Code:
href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
</if>
Add this below it:
Code:
<tr>
<td class="thead">Extra Info</td>
</tr>
Now you can copy your existing links just below the above code. So for example location, you would find this line:
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
And add the <td class="vbmenu_option"> to it, so it would be like this:
Code:
<if condition="$post['field2']"><tr><td class="vbmenu_option"><div>$vbphrase[location_perm]: $post[field2]</div></td></tr></if>
and joindate:
Code:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
Would become:
Code:
<if condition="$post['joindate']"><tr><td class="vbmenu_option"><div>$vbphrase[join_date]: $post[joindate]</div></td></tr></if>
And so on, so you get the idea