Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 1716

phpBB Custom Coding • Re: Hide Memberlist but show Team and Who's online

$
0
0
admin= ? (someone with username "admin"? is not necessarily an administrator)
the founder only?
All members of the group Administrators?
The founder, I have only one administrator account.
+ there's the "last active" section in viewprofile which is updated regularly
Is it visible anywhere ?

Btw, I have updated sql query in viewonline.php file ( using chatgpt ) to exclude admin from showing online.
the query is under // Whois requested

Code:

$sql = 'SELECT u.user_id, u.username, u.user_type, s.session_ip    FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . " s    WHERE s.session_id = '" . $db->sql_escape($session_id) . "'    AND u.user_id = s.session_user_id    AND u.user_type NOT IN (" . USER_FOUNDER . ", " . USER_IGNORE . ")";

Statistics: Posted by exemplary1 — Thu Mar 07, 2024 1:52 pm



Viewing all articles
Browse latest Browse all 1716

Trending Articles