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

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

$
0
0
Other solution, open memberlist.php file and find:

Code:

// Check our mode...if (!in_array($mode, array('', 'group', 'viewprofile', 'email', 'contact', 'contactadmin', 'searchuser', 'team', 'livesearch'))){trigger_error('NO_MODE');}
add after:

Code:

if (in_array($mode, array('','group'))){if ($user->data['group_id'] != 5){trigger_error('NO_VIEW_USERS');}}
Save and purge the cache.

For any user who is not an administrator, they will receive an error message when trying to view the full list of members or group memberships.
The code doesn't work if added following,

Code:

 /memberlist.php?mode=searchuser

Statistics: Posted by exemplary1 — Sun Mar 03, 2024 5:39 pm



Viewing all articles
Browse latest Browse all 2204

Trending Articles