Yapımcı: DragonFever
kurulum:
index_stats kalıbını açın.
tümüne alttaki kodla değiştirin

<tr><td class="tcat" colspan="2"><strong>{$lang->boardstats}</strong></td></tr>
<tr>
<td class="trow2" align="center" width="5%"><img src="images/stats.gif"></td>
<td class="trow1" width="95%"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_newestuser}
</span>
</td>
</tr>
index_whoisonline kalıbının tümünü aşağıdaki kodla değiştirin.

<tr>
<td class="tcat" colspan="2"><strong><a href="online.php">{$lang->online_note}</a></strong></td>
</tr>
<tr>
<td class="trow2" width="5%" align="center"><img src="images/whos_online.gif"></td>
<td class="trow1" width="95%"><span class="smalltext">{$lang->stats_mostonline}<br />{$onlinemembers}</span></td>
</tr>
index.php yi aç (ftp den)
bul

$lang->online_note = sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, $mybb->settings['wolcutoffmins'], my_number_format($membercount), $memberbit, my_number_format($anoncount), $anonbit, my_number_format($guestcount), $guestbit);
bununla değiştir.

// Find out what the highest users online count is.
    $mostonline = $cache->read("mostonline");
    if($onlinecount > $mostonline['numusers'])
    {
        $time = time();
        $mostonline['numusers'] = $onlinecount;
        $mostonline['time'] = $time;
        $cache->update("mostonline", $mostonline);
    }
    $recordcount = $mostonline['numusers'];
    $recorddate = my_date($mybb->settings['dateformat'], $mostonline['time']);
    $recordtime = my_date($mybb->settings['timeformat'], $mostonline['time']);

    // Then format that language string.
    $lang->stats_mostonline = sprintf($lang->stats_mostonline, my_number_format($recordcount), $recorddate, $recordtime);
yine index.php de
bul

$lang->stats_posts_threads = sprintf($lang->stats_posts_threads, my_number_format($stats['numposts']), my_number_format($stats['numthreads']));

  değiştir

 Kod:

$lang->stats_posts_threads = sprintf($lang->stats_posts_threads, my_number_format($stats['numposts']), my_number_format($stats['numthreads']), my_number_format($stats['numusers']));
index.lang.php yi aç
bul:

$l['stats_posts_threads'] = "Üyelerimiz {2} konuda toplam {1} mesaj yollamışlar.";
değiştir:

$l['stats_posts_threads'] = "{2} Konu , {1} Mesaj , {3} Kayıtlı Üyemiz Var.  ";
resim: