News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Total users online

Started by IceXaos, July 26, 2010, 10:45:14 AM

Previous topic - Next topic

IceXaos

I saw that it was already added up in one of the files, I think BoardIndex.php

Anyways, how would I show the total users online beside the # of guests & members?

Joker™

Do you want it to show as

Total users Online: XX ( XX Guests , YY Members )

is that the case ?

also im assuming that you are using SMF 2.0 RC3 with default theme.
Github Profile
Android apps
Medium

How to enable Post Moderation

"For the wise man looks into space and he knows there is no limited dimensions." - Laozi

All support seeking PM's get microwaved

IceXaos

Quote from: Joker™ on July 26, 2010, 12:52:03 PM
Do you want it to show as

Total users Online: XX ( XX Guests , YY Members )

is that the case ?

also im assuming that you are using SMF 2.0 RC3 with default theme.
Yup & yup.  :)

Joker™

Note : Make backup of your files before editing them.

ok so here we go,

open this file

themes\default\BoardIndex.template.php

Find:

', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', comma_format($context['num_guests']), ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ' . comma_format($context['num_users_online']), ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'];




Replace it with:

', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', '', $txt['total_users'] , ' ' ,comma_format( $context['num_users_online'] + $context['num_guests']  ),' (', comma_format($context['num_users_online']), ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'],' And ',comma_format($context['num_guests']), ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'],') ';



Also go to

Themes\default\languages\Modifications.english.php

before

?>


add this

$txt['total_users'] = 'Total users Online:';


Clean your site cache to see the effect
Github Profile
Android apps
Medium

How to enable Post Moderation

"For the wise man looks into space and he knows there is no limited dimensions." - Laozi

All support seeking PM's get microwaved

IceXaos

Thanks so much, for all your help.  Once again, what ya gave worked.  :P

Joker™

Github Profile
Android apps
Medium

How to enable Post Moderation

"For the wise man looks into space and he knows there is no limited dimensions." - Laozi

All support seeking PM's get microwaved

Advertisement: