im using this code,
function head_title()
{
$pagetitle=strlen($this->request) ? strip_tags(@$this->content['title']) : '';
$headtitle=(($this->template == 'qa') ? 'YOUR CUSTOM TITLE HERE' : (strlen($pagetitle) ? ($pagetitle.' - ') : '').$this->content['site_title']);
$this->output('<TITLE>'.$headtitle.'</TITLE>');
}
but, this code change the title of my category page . Any solution ?