I made quick update to this. Instead of having it say "find all posts by this member," I added the following phrase:
Phrase manager - add new phrase:
Product: vBulletin
varname: find_all_threads_by_x
text: Find All Threads by {1}
Then find the original phrase from fourat:
Open postbit or postbit_legacy template and search for this code
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_all_posts_by_x]</phrase></a></td></tr>
</if>
And instead of adding this below:
Code:
<tr><td class="vbmenu_option">
<a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]&starteronly=1"><phrase>find all threads started by this member</phrase></a></td></tr>
Add this:
Code:
<tr><td class="vbmenu_option">
<a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]&starteronly=1"><phrase 1="$post[username]">$vbphrase[find_all_threads_by_x]</phrase></a></td></tr>