Simply put the links in the postbit template or postbit_legacy template where you want them to appear.
View profile
Code:
<if condition="$show['profile']"><a href="member.php?$session[sessionurl]u=$post[userid]">$vbphrase[view_public_profile]</a></if>
Send PM
Code:
<if condition="$show['pmlink']"><a href="private.php?$session[sessionurl]do=newpm&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_private_message_to_x]</phrase></a>
Send Email
Code:
<if condition="$show['emaillink']"><a href="sendmessage.php?$session[sessionurl]do=mailmember&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_email_to_x]</phrase></a>
One change I have made to my forum is...where it normally shows the members post count, I have made that clickable to take you to the persons posts.
Search for:
Code:
$vbphrase[posts]: $post[posts]
Replace with:
Code:
$vbphrase[posts]: <a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]" rel="nofollow">$post[posts]</a>
Hope this helps!