MyBB Community Forums

Full Version: Clickable posts number?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

is there anyway to make the number of posts by a member clickable so that when someone click it it shows all of their post? Also is it possible to add "threads created" under the posts number?


Pic attached:
admin panel >> templates >> active theme templates >> Post Bit Templates >> postbit_author_user
find {$lang->postbit_posts} {$post['postnum']}<br /> and replace with below code and save the template

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