Is it any chance to find all users with extended users? k_user_name showing the current logged in. Can I make so I can show all the logged in users?
trendoman wrote: You can try to list all users, because they are just cloned pages in a template.
users/index.php
This is the main template that 'extends' the native user accounts.
It serves two purposes -
a. All editable regions defined within this template will become part of the user accounts. This can be used to add any number of custom fields to users e.g. sex, qualification, address etc.
b. Each cloned page created from this template will automatically create and get associated with a user account. This can be used to create user accounts from the front-end using DataBound Forms.
Xtriz3D wrote:trendoman wrote: You can try to list all users, because they are just cloned pages in a template.
Do you mean k_is_list?
Should I use it in profile.php file?
KK wrote: Showing all current logged-in users (as, for example, in the footer of this forum), will require recording somewhere each user's info when she logs in. Additionally, this info needs to be periodically refreshed because a user can simply abandon her session without logging off. For example, this forum shows the list "based on users active over the past 5 minutes".
In short, showing such a list is not available out-of-the-box and coding it will require a bit of an effort.
KK, how much time passes before session is expired?