MyBB Community Forums

Full Version: "statistics" plugin?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 988b284cba.png]

Is that a plugin or something? on 1.8
that looks like template code edits (index_stats template)
(2015-01-19, 06:11 PM).m. Wrote: [ -> ]that looks like template code edits (index_stats template)

Do u know the code?
^ No. please wait for some other person to provide guidance
The required variables are as follows... you can use them in the place where you want it to appear on the index page....


Number of Posts - {$stats['numposts']}
Number of Threads - {$stats['numthreads']}
Number of Members - {$stats['numusers']}
(2015-01-20, 06:48 AM)mmadhankumar Wrote: [ -> ]The required variables are as follows... you can use them in the place where you want it to appear on the index page....


Number of Posts - {$stats['numposts']}
Number of Threads - {$stats['numthreads']}
Number of Members - {$stats['numusers']}

How can i get it in a box like posted above?
do you want it to be shown in a side bar... does your forum already have sidebars..... here is a sample code...

<table border="0" class="tborder">
<thead>
<tr><td class="thead"><strong>{$lang->boardstats}</strong></td></tr>
</thead>
<tbody>
<tr><td class="trow1">Posts - {$stats['numposts']}</td></tr>
<tr><td class="trow2">Threads - {$stats['numthreads']}</td></tr>
<tr><td class="trow1">Members - {$stats['numusers']}</td></tr>
</tbody>
</table>
(2015-01-22, 06:07 AM)mmadhankumar Wrote: [ -> ]do you want it to be shown in a side bar... does your forum already have sidebars..... here is a sample code...

<table border="0" class="tborder">
<thead>
<tr><td class="thead"><strong>{$lang->boardstats}</strong></td></tr>
</thead>
<tbody>
<tr><td class="trow1">Posts - {$stats['numposts']}</td></tr>
<tr><td class="trow2">Threads - {$stats['numthreads']}</td></tr>
<tr><td class="trow1">Members - {$stats['numusers']}</td></tr>
</tbody>
</table>

Thanks worked good. U think it can be improved some how? it looks good but the quality is ehh

http://asapmob.net/