MyBB Community Forums

Full Version: Remove "Find All Threads" in profile?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone please tell me how to remove "Find All Threads" and "Find All Posts" in profiles? I've removed the search option from my forum and also want to remove this.
It's the member_profile template. The code you're looking for is:

<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}</a>)</span></td>
</tr>

Remove this:

<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}</a>)</span>

And the links should go away. Smile
Thanks Seabody