MyBB Community Forums

Full Version: [Request] Minimal Post Count mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
is there a mode where only a new thread increases users post count (replying should not increase users post count)?
Well all i'd do (quick and dirty way) is open newreply.php, scroll right to the bottom and find:
		if($forum['usepostcounts'] != "no")
		{
				$queryadd = ",postnum=postnum+1";
		}
Then just replace it with:
		if($forum['usepostcounts'] != "no")
		{
				$queryadd = "";
		}

Normally you'd just disable the post counts, but that disables every post count (including New Threads). If anyone has another way of this, then feel free to post it.