Change the title order: Company Name - Page title Print

  • 0

Change this:
<title><?php echo $this->Html->safe(($this->Html->ifSet($page_title) ? $page_title . " - " : "") . $this->Html->ifSet($system_company->name));?></title>

to this:
<title><?php echo $this->Html->safe($this->Html->ifSet($system_company->name) . ($this->Html->ifSet($page_title) ? " - $page_title" : ""));?></title>


Was this answer helpful?

« Back