MyBB Community Forums

Full Version: make the post numbers clickable so it shows all the users posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
as the title says- how do I make the post number that is shown in postbit clickable so it searches for all the user's posts.
posbit_author_user template, find:

{$post['postnum']}

Replace with:

<a href="search.php?action=finduser&amp;uid={$post['uid']}">{$post['postnum']}</a>
(2011-01-16, 09:28 AM)- G33K - Wrote: [ -> ]posbit_author_user template, find:

{$post['postnum']}

Replace with:

<a href="search.php?action=finduser&amp;uid={$post['uid']}">{$post['postnum']}</a>

thanks man. I almost had that last night on my own except I didn't leave the postnum in there so I suppose that's why it wasn't working for me. maybe I'll add that in the tutorials section.