I added a menu item in the drop down postbit menu to search the users thanked posts . Just keeps users from having to go to the userprofile to search
In postbit and postbit legacy
Look for
Code:
<if condition="$show['search']">
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[find_more_posts_by_x]</phrase></a></td></tr>
</if>
.
below it paste:
Code:
<if condition="$show['search']">
<tr><td class="vbmenu_option"><a href="post_thanks.php?$session[sessionurl]do=findthanks&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">Find all $post[username]'s thanked posts</phrase></a></td></tr>
</if>