Which file do I edit to change it from this to this...
Before:
00 Guests, 0 Users
Users active in past '000' minutes:
Admin, Testing 1, Testing 2
To
After:
00 Guests, 0 Users
Admin, Testing 1, Testing 2
Themes/default/BoardIndex.template.php
Any chance you know which line or what I change?
BEFORE:
// Assuming there ARE users online... each user in users_online has an id, username, name, group, href, and link.
if (!empty($context['users_online']))
echo '
', $txt[140], ':<br />', implode(', ', $context['list_users_online']);
AFTER:
// Assuming there ARE users online... each user in users_online has an id, username, name, group, href, and link.
if (!empty($context['users_online']))
echo implode(', ', $context['list_users_online']);
Pretty sure that's it.
Thank you so much!!! :D