Michael Posted February 21, 2016 Report Posted February 21, 2016 I was thinking some people might want to change the way the page title is displayed, so I managed to get it to work nicely and added it to our KB, and for people who don't read our KB here's the way to do it 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> Now your pages won't be Page Title - Company Name but will show Company Name - Page Title Blesta Addons 1
jobplease Posted February 22, 2016 Report Posted February 22, 2016 Which page does one edit these details ??
Michael Posted February 22, 2016 Author Report Posted February 22, 2016 Which page does one edit these details ?? Sorry the structure.pdt file you have in your theme. /app/views/client/theme-name/structure.pdt
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now