How to remove “Home” from title tag

If you want to remove the word "Home" from your website title tag in joomla just find the file:
yourwebsite/includes/joomla.php
In line 503 you'll have to replace the function there with this:
function setPageTitle( $title=null ) {
if (@$GLOBALS['mosConfig_pagetitles']) {
$title = trim( htmlspecialchars( $title ) );
if ($title == "Home") {
$title = "PUT IN YOUR OWN SITE DESCRIPTION HERE";
}
$this->_head['title'] = $title ? $GLOBALS['mosConfig_sitename'] . " – ". $title : $GLOBALS['mosConfig_sitename'];
}
}
And put your own words to replace "Home" inside.
If you want nothing instead of "Home" just leave the $title empty. Like this: $title = ""