This turned out to be a pretty easy fix. In the searchKeyword.php file, change this:
foreach ($aList as $sKey => $aValue) {
$aValues[$sKey] = _t($aValue['title']);
if (!class_exists($aValue['class'])) {
$sPath = BX_DIRECTORY_PATH_ROOT . str_replace('{tmpl}', $GLOBALS['tmpl'], $aValue['file']);
require_once($sPath);
}
$oClass = new $aValue['class']();
$oClass->addCustomParts();
}
To this:
foreach ($aList as $sKey => $aValue) {
$somevalue = _t($aValue['title']);
if ($somevalue!= "Sounds" && $somevalue!= "Files" && $somevalue!= "Polls" && $somevalue!="Blogs") {
$aValues[$sKey] = _t($aValue['title']);
}
if (!class_exists($aValue['class'])) {
$sPath = BX_DIRECTORY_PATH_ROOT . str_replace('{tmpl}', $GLOBALS['tmpl'], $aValue['file']);
require_once($sPath);
}
$oClass = new $aValue['class']();
$oClass->addCustomParts();
}
Thanks for the direction mrpowless!