MyBB Community Forums

Full Version: Display thread count
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to display the number of threads a user has in his/her postbit?
Upload into ./inc/plugins/ folder.
Go to your PluginManager and Activate;
Cool, thanks a lot! Is there a way to move it so it appears right below the post count? at the moment it is shown right at the bottom of the postbit. Thanks again!
Bennie Wrote:Cool, thanks a lot! Is there a way to move it so it appears right below the post count? at the moment it is shown right at the bottom of the postbit. Thanks again!

Redownload the file and overwrite the old one;
That's awesome. Thank you!Big Grin
I made one here: http://community.mybboard.net/showthread...#pid178269

Also has a recount feature and should run a fair bit faster.


@LeX-, you should avoid querying so much in the postbit, especially with aggregate functions Toungue For a board with 20 posts per page, it's an additional 20 COUNT queries done every time a user accesses showthread.php (probably the most accessed page on any board). That can really slow things down.

Meh, it's a really quick and short plugin though I guess =P
Seems not to be my personal problem; There's no other way of counting all userthreads? Or am i missing something.
LeX- Wrote:Seems not to be my personal problem; There's no other way of counting all userthreads? Or am i missing something.
Just check out my plugin. No extra queries done in the postbit.