General idea
- Create a new column onlyfirst TINYINT(1) in table forum, set this to 1 if only threads should be counted there
- Rebuild forum information
- In functions_newpost.php FIND
PHP Code:
if ($foruminfo['countposts'])
REPLACE that with
PHP Code:
if ($foruminfo['countposts'] AND (!$foruminfo['onlyfirst'] OR $type == 'thread'))
Attn: If you ever update post counters they will show the real number.
To prevent this further edits would be necessary.