http://www.vbulletintemplates.com/mo...ght=remove+mod
Install that template modification.
code hacking (dont have to do this)
If you want to take all the mod code out to save some processing time or something (hey, if we arent using them why should we have code for them?

). You can do this code hack (not tested).
Open index.php
Find:
PHP Code:
,forumhome_moderator
Remove it.
Find:
PHP Code:
$imodcache = array();
$mod = array();
$forummoderators=$DB_site->query('SELECT user.userid,user.username,moderator.forumid
FROM moderator
LEFT JOIN user
ON (moderator.userid=user.userid)
ORDER BY user.username');
while ($moderator=$DB_site->fetch_array($forummoderators)) {
$imodcache["$moderator[forumid]"][] = $moderator;
$mod["$moderator[userid]"] = 1;
}
$DB_site->free_result($forummoderators);
unset($moderator);
Remove it.
Find:
Remove it.
Find:
PHP Code:
$listexploded=",", $forum['parentlist']);
while ( list($mkey1,$mval1)=$listexploded) ) {
if ( !isset($imodcache["$mval1"]) ) {
continue;
}
$imodcache["$mval1"]);
while ( list($mkey2,$moderator)=$imodcache["$mval1"]) ) {
if ( !isset($forum['moderators']) ) {
eval("\$forum['moderators'] = \"".gettemplate('forumhome_moderator')."\";");
} else {
eval("\$forum['moderators'] .= \", ".gettemplate('forumhome_moderator')."\";");
}
}
}
Remove it.
Find:
PHP Code:
if ( !isset($forum['moderators']) ) {
$forum['moderators'] = ' ';
}
Remove it.
I *think* thats everything, again the code hack isent tested.