[IP.Board 3.2] Boards statistics - amount of topics

16 Jan 2012, 07:18

If we want to show in our forum statistics how many topics are started, we should follow the instructions:

Otwórz: admin/applications/forums/modules_public/forums/boards.php

Find:

$stats_output['total_posts'] = $stats['total_replies'] + $stats['total_topics'];

Add bellow:

$stats_output['total_topics'] = $stats['total_topics'];

Go to: ACP -> Look & Feel tab -> skin -> Board Index -> boardIndexTemplate

Find:

<li class="clear">
<span class="value">{$stats['info']['total_posts']}</span>
{$this->lang->words['total_posts']}
</li>

Add below:

<li class="clear">
<span class="value">{$stats['info']['total_posts']}</span>
Topics
</li>


Article category: IP.Board