Topic: Hiding Mods Under Forums?

Is there a way I can hide the mods that moderate a forum?  For example when you give a mod permission to mod a forum underneath that forum it says "moderated by bla bla bla"  Anyone know how to hide that and still let the person be a moderate that forum?

Re: Hiding Mods Under Forums?

there is no option but you can do a simple hack to not show the list of moderators under each forum link.

in index.php just comment out this: line: 115 to 124

    if ($cur_forum['moderators'] != '')
    {
        $mods_array = unserialize($cur_forum['moderators']);
        $moderators = array();

        while (list($mod_username, $mod_id) = @each($mods_array))
            $moderators[] = '<a href="profile.php?id='.$mod_id.'">'.pun_htmlspecialchars($mod_username).'</a>';

        $moderators = "\t\t\t\t\t\t\t\t".'<p><em>('.$lang_common['Moderated by'].'</em> '.implode(', ', $moderators).')</p>'."\n";
    }

Re: Hiding Mods Under Forums?

Thank you worked fine