Log in

View Full Version : Forum Home Enhancements - Members online status


Replicant
02-11-2015, 10:00 PM
This template edit will show if any members are logged in or not by displaying the online status in red for offline or green for online.

https://vborg.vbsupport.ru/external/2015/02/16.png

https://vborg.vbsupport.ru/external/2015/02/17.png

Edit the phrase "currently_active_users" and change to "[Your Forum Name] Members"

Create new phrases "online_now" value="ONLINE NOW!"
and "offline_now" value= "OFFLINE"
or whatever you want displayed

Find and change in template FORUMHOME :
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />

To:

<span class="blocksubhead">{vb:rawphrase currently_active_users} -</span>
<vb:if condition="$numberregistered > 0">
<span class=members_online>{vb:phrase online_now}</span>
<vb:else />
<span class=members_offline>{vb:phrase offline_now}</span>
</vb:if>


and in additional.css


.members_online {
color: lime;
font-style: italic;
font-weight: bolder;
}
.members_offline {
color: red;
font-style: italic;
font-weight: bolder;
}

Dragonsys
09-07-2016, 07:46 PM
Can this be used to display if any members of a specific usergroup are online?

Replicant
09-07-2016, 11:02 PM
I imagine it could. I don't have a vb4 install anymore to work with so I couldn't tell you how to do it. I'm sure one of the vb4 devs on here could help you out with that. I only work on vb5 mods now.

Dragonsys
09-08-2016, 01:02 PM
I imagine it could. I don't have a vb4 install anymore to work with so I couldn't tell you how to do it. I'm sure one of the vb4 devs on here could help you out with that. I only work on vb5 mods now.

I had thought about using is_member_of (and someone PM'd me about it as well), I'm just not sure if it would actually check anyone logged in, or if it just pulls from the person viewing the page. I will play with it and post up here if I find a solution which works.

MarkFL
09-08-2016, 02:42 PM
When you use the is_member_of() function, you typically need to pass 2 arrays as parameters, the first should contain the usergroup information of the user in question, and the second array is a list of usergroupids you are checking for.

So, for example suppose you have the userid of the user in question (in $userid), what you could then use as a condition is:

is_member_of(fetch_userinfo($userid), array(X, Y, Z))

which will return true if the user with $userid as their userid is a member of any of the usergroups with usergroupid X, Y, or Z.

Dragonsys
09-08-2016, 03:05 PM
When you use the is_member_of() function, you typically need to pass 2 arrays as parameters, the first should contain the usergroup information of the user in question, and the second array is a list of usergroupids you are checking for.

So, for example suppose you have the userid of the user in question (in $userid), what you could then use as a condition is:

is_member_of(fetch_userinfo($userid), array(X, Y, Z))

which will return true if the user with $userid as their userid is a member of any of the usergroups with usergroupid X, Y, or Z.

Right, which is why I don't think it would work for this situation, as it will pull the info for a specific user, not any user currently online. Unless i loop through all online users, which I do not want to do, as that would cause some bad load times if there are a lot of users.

MarkFL
09-08-2016, 04:03 PM
I believe BOP5 has a product that will show staff online in the sidebar, which could suit your needs. :)

Gavo34
06-18-2017, 02:47 PM
Works for vB 4.2.5

Find and change in template FORUMHOME :
(Only partial code was given above)


<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:rawphrase currently_active_users}</h3>


Change to:
<span class="blocksubhead">{vb:rawphrase currently_active_users} -</span>
<vb:if condition="$numberregistered > 0">
<span class=members_online>{vb:phrase online_now}</span>
<vb:else />
<span class=members_offline>{vb:phrase offline_now}</span>
</vb:if>