- Posts: 58
- Thank you received: 0
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 Categories and moderators
17 years 2 months ago #6177
by ArMyBoT
Categories and moderators was created by ArMyBoT
Hi, I didn't find where configure to NOT show moderators names assigned to categories.
I'd prefer to avoid it.
Anyone?
I'd prefer to avoid it.
Anyone?
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6182
by mhunto
Replied by mhunto on topic Re:Categories and moderators
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6250
by Matias
Replied by Matias on topic Re:Categories and moderators
There is no way to remove moderator names from the configuration files.
But in my own forum I've removed them from my category view. This is how you do it for default_ex theme:
Edit components/com_kunena/template/default_ex/listcat.php line 534:
Remove this:
Did it help for you? Moderators are still shown in other views after that change.
But in my own forum I've removed them from my category view. This is how you do it for default_ex theme:
Edit components/com_kunena/template/default_ex/listcat.php line 534:
Remove this:
Code:
<?php
}
//get the Moderator list for display
$database->setQuery("select * from #__fb_moderation left join #__users on #__users.id=#__fb_moderation.userid where #__fb_moderation.catid=$singlerow->id");
$modslist = $database->loadObjectList();
check_dberror("Unable to load moderators.");
// moderator list
if (count($modslist) > 0)
{
?>
<div class = "<?php echo $boardclass ;?>thead-moderators fbs">
<?php echo _GEN_MODERATORS; ?>:
<?php
foreach ($modslist as $mod) {
echo ' '.CKunenaLink::GetProfileLink($fbConfig, $mod->userid, $mod->username).' ';
}
?>
</div>
Did it help for you? Moderators are still shown in other views after that change.
Please Log in or Create an account to join the conversation.
17 years 1 week ago #13084
by mmasloski
Replied by mmasloski on topic Re:Categories and moderators
FYI - I used this method in 1.0.9 and it works wonderfully - Thank you.
We have a very large moderator list and it just gets too darn big.
Of course it still shows for the threads, but at least the category list is nice and clean.
Kudos!!
We have a very large moderator list and it just gets too darn big.
Of course it still shows for the threads, but at least the category list is nice and clean.
Kudos!!
Please Log in or Create an account to join the conversation.
Time to create page: 0.206 seconds