วิธีปรับแต่งการแสดงผล sitename และ article title ใน joomla
Posted: Sun Jul 25, 2010 9:31 am
ที่มา: http://www.joomlahackers.net/joomla-tut ... itles.html" onclick="window.open(this.href);return false;How to remove (-) hyphens from Joomla Website Page Titles
I have came across this problem a lot of times and atlast, have fixed it with a core hack. I know,many of you are having the same problem. I mean, you can have problems like seeing the site titles showing two times on the page browser title bar or showing extra (-) hyphens on the start of the page title.
Its very frustrating.
So, here is a good fix,
1. Open your template's index.php or any config php page,which is linking inside your index.php , from where the page title is defined. That code will be something like this,
Just replace it with,Code: Select all
$this->setTitle($mainframe->getCfg('sitename') . ' - ' . $this->getTitle());
Thats it. Its Done!Code: Select all
$this->setTitle($this->getTitle());