MyBB Community Forums

Full Version: Remove time scale?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How do I change or remove the "active in the past 1400 minutes"?

I want the amount of guests and users but I don't want to show the time part.

How do I remove it?
You can do this by editing online.lang.php

So... open inc/languages/english/online.lang.php
and find:
$l['online_count'] = "{1} {2} active in the past {3} minutes ({4} {5}, {6} of whom {7} invisible, and {8} {9}).";

Or just edit from your AdminCP-->Language Packs (Manage) - Your Language-->online.lang.php
and find
online_count
I edited that.

It still says it on there though.
Open index.php

Find
	$lang->online_note = sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, $mybb->settings['wolcutoffmins'], my_number_format($membercount), $memberbit, my_number_format($guestcount), $guestbit);

Change into
	$lang->online_note = sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, my_number_format($membercount), $memberbit, my_number_format($guestcount), $guestbit);

Open index.lang.php

Find
$l['online_note'] = "{1} {2} active in the past {3} minutes ({4} {5} and {6} {7}).";

Change into
$l['online_note'] = "{1} {2} active ({3} {4} and {5} {6}).";
Thanks it worked Smile