XF 1.4 Hiding messages and discussions from forum statistics

Hi Guys, I would like to keep the forum statistics module but would like to hide the
"discussions and messages" from it.

How would i achieve this ?

amEBFhF.png


Thanking you!
 
In the forum_list template, find these lines:

Code:
          <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
             <dd>{xen:number $boardTotals.discussions}</dd></dl>
           <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
             <dd>{xen:number $boardTotals.messages}</dd></dl>

And comment them out.
 
Top Bottom