marcbkk wrote:
Sir Cyberpunk, our Exhaulted Guru of Fireboard
, I am just curious if you are still working on that other code fix so that childboards post counts are totalted up and shown as the total number of posts for the host board on the main page as well?
Best wishes, Marc
For do that:
Go to line 609-615 in your listcat.php from cyberpunk and find
[code:1]
$numtopics;
$numreplies;
[/code:1]
and write after that [b]"+ $child_numtopics;"[/b] and [b]"+ $child_numreplies"[/b]
like follow:
[code:1]
$numtopics + $child_numtopics;
$numreplies + $child_numreplies;
[/code:1]
and the forum main page show you the count of all topics and replies in the board and childboard...