I'v made this mod work for vbulletin 4.1.5
Find "Postbit" in styles,
find:
Code:
<div class="username_container">
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
And replace it with:
Code:
<div class="username_container">
<vb:if condition="$post['userid']">
<div id="postmenu_{vb:raw post.postid}">
<vb:if condition="$show['profile']">
<a href="member.php?{vb:raw session.sessionurl}u={vb:raw post.userid}">
<vb:if condition="$post['field5']">
<img src="{vb:raw post.field5}" border="0" /></a>
<vb:else />{vb:raw memberaction_dropdown}</a>
</vb:if></vb:if>
{vb:raw post.onlinestatus}
</div>
You'll have to add your own fields, you can do that by going to admincp->User Profile Fields->Add new | then replace field5 in the code with field
NUMBER which you made the new field
if you have any questions, or need some help, add me on skype: theflash178
Thanks, Loaep