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
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
Question
Remove Moderators at the bottom of the forum
Remove the code around line 301 at \components\com_kunena\template\default\showcat.php
Code:
<?php
get the Moderator list for display
$fb_queryName = $fbConfig->username ? "username" : "name";
$kunena_db->setQuery("select m.userid, u.{$fb_queryName} AS username FROM #__fb_moderation AS m LEFT JOIN #__users AS u ON u.id=m.userid WHERE m.catid='{$catid}'");
$modslist = $kunena_db->loadObjectList();
check_dberror("Unable to load moderators.");
?>