Hello everyone
I just needed this extension because we had, and unfortunately still have, some really rude forum users.
It's a great extension for the overview, but unfortunately I have a display error.
I have made the following changes in the forum, especially in the memberlist.php, for some time now:
Original:
Code: Select all
$default_key = 'c';
$sort_key = $request->variable('sk', $default_key);
$sort_dir = $request->variable('sd', 'a');
Change to:
Code: Select all
$default_key = 'm';
$sort_key = $request->variable('sk', $default_key);
$sort_dir = $request->variable('sd', 'a');
The member list in the forum is displayed from top to bottom, starting with the administrators, followed by the moderators.
All users I have banned or suspended are displayed at the top of the member list, even before the admins and moderators.
Unfortunately, I haven't found anything that will move the suspended/banned users to the END of the member list and display them there.
Can you help me with this?