Total Number of Topics on Board Index
Open: sources/lib/boardstats_functions.php
Find:
$total_posts = $stats['total_replies'] + $stats['total_topics'];
Add Below
$total_topics = $stats['total_topics'];
Find:
$total_posts = $stats['total_replies'] + $stats['total_topics'];
Change To
$total_posts = $stats['total_replies'];
Find:
$ibforums->lang['total_word_string'] = str_replace( "<#posts#>" , "$total_posts" , $ibforums->lang['total_word_string'] );
Add Below
$ibforums->lang['total_word_string'] = str_replace( "<#topics#>" , "$total_topics" , $ibforums->lang['total_word_string'] );
Close sources/lib/boardstats_functions.php
Open: lang/en/lang_boards.php
Find
'total_word_string' => "Our members have made a total of <b><#posts#></b> posts<br />We have <b><#reg#></b> registered members<br />The newest member is <b><a href='<#link#>'><#mem#></a></b>",
Replace With
'total_word_string' => "Our members have made a total of <b><#posts#></b> posts in <b><#topics#></b> topics<br /> We have <b><#reg#></b> registered members<br />The newest member is <b><a href='<#link#>'><#mem#></a></b>",