- Posts: 7245
- Thank you received: 566
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question How to exclude Super Admin from userlist
There is currently no way to hide it, but you can to it by changing SQL query in template/default/plugin/userlist/userlist.php
How to do it need some thinking, but..
Please Log in or Create an account to join the conversation.
Ah, I thought that you meant online list.
There is currently no way to hide it, but you can to it by changing SQL query in template/default/plugin/userlist/userlist.php
How to do it need some thinking, but..
Hi Mathias,
Hhhmmmm....... well..... in which way I can change userlist.php then?
Maybe an option to hide the super admins in the user list is something for the next version?
Cheers,
Eric
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Something like this to the line 69:
Code:if ($search != "") { $query .= " WHERE (name LIKE '%$search%' OR username LIKE '%$search%') AND u.id NOT IN (62)"; $query_ext .= "&search=" . $search; } else { $query .= " WHERE u.id NOT IN (62)"; }
Thank you, works fine now!
Cheers,
Eric :woohoo:
Please Log in or Create an account to join the conversation.