Ah! ok i see I missed the part about clicking the "Find Posts" in the users profile. Try this template then instead: "
search_results_postbit" It is probably the place you need to look. you can put your code to add your author in this bit of code in the template. Just find this code:
Code:
<div class="userinfo_noavatar">
<div class="contact">
<div class="username_container">
<h2>{vb:rawphrase thread}: <a href="{vb:link thread, {vb:raw post}, null, 'threadid', 'threadtitle'}" title="{vb:raw post.threadtitle}">{vb:raw post.threadtitle}</a></h2>
<vb:if condition="$post['userid']">
{vb:rawphrase by_x, {vb:link member, {vb:raw post}, null, 'userid', 'username'}, {vb:raw post.username}}
<vb:else />
{vb:rawphrase by_x_guest, {vb:raw post.username}}
</vb:if>
</div>
</div>
and change it with your added author code:
Code:
<div class="userinfo_noavatar">
<div class="contact">
<div class="username_container">
<h2>{vb:rawphrase thread}: <a href="{vb:link thread, {vb:raw post}, null, 'threadid', 'threadtitle'}" title="{vb:raw post.threadtitle}">{vb:raw post.threadtitle}</a></h2>
<vb:if condition="$post['userid']">
{vb:rawphrase by_x, {vb:link member, {vb:raw post}, null, 'userid', 'username'}, {vb:raw post.username}}
<vb:else />
{vb:rawphrase by_x_guest, {vb:raw post.username}}
</vb:if>
<div>Author: YOUR AUTHOR CODE HERE</div>
</div>
</div>
I tested it and it should add the info in the proper place. You can see by my screen shot attached.