1

Topic: No post count in spam

If it's possible, how can I turn off the post count in a particular forum section (spam)?

Thank you.

Re: No post count in spam

Try this
post.php
change line 317

if (!$pun_user['is_guest'])

with

if (!$pun_user['is_guest'] && $fid != X)

Where X is the category ID.

NOTE: I did not test this.