How to change page title dynamically in magento.
In magento the page title come from the head.phtml files that are located in bellow directory..
\app\design\frontend\base\default\template\page\html
<title> <?php echo $this->getTitle() ?><title>
This code set title of the every page in magento. $this->getTitle() method get the title of the every page that loaded.
In magento the page title come from the head.phtml files that are located in bellow directory..
\app\design\frontend\base\default\template\page\html
<title> <?php echo $this->getTitle() ?><title>
This code set title of the every page in magento. $this->getTitle() method get the title of the every page that loaded.
No comments:
Post a Comment