So you want to remove the Home from the Joomla title tags. In joomla.php (in the includes folder find
"function setPageTitle" on line 503 and replace with the folowing
function setPageTitle( $title=null ) { if (@$GLOBALS[mosConfig_pagetitles]) { $title = trim( htmlspecialchars( $title ) ); /* $this->_head[title] = $title ? $title . - . $GLOBALS[mosConfig_sitename] : $GLOBALS[mosConfig_sitename]; */ if ($title == Home) { $this->_head[title] = $GLOBALS[mosConfig_sitename]; } else { $this->_head[title] = $title . - . $GLOBALS[mosConfig_sitename]; } } }
You can remove " Home" from the above.