Login:
Password:
Remember password Show my name in the online users list
Forgot password?
If I use <?php echo $this->getTitle() ?> for example in 2columns-left.phtml then it doesn’t output the title. How can I display page title anywhere I like?
Try to replace:
<?php echo $this->getTitle() ?>
<?php echo Mage::getSingleton('cms/page')->getTitle() ?>
Hope this will help.
Iterative Media, Inc. IterativeMedia.com - Agile eCommerce for the Enlightened.
Iterative Media - 18 June 2008 07:06 AMTry to replace: <?php echo $this->getTitle() ?> with following code: <?php echo Mage::getSingleton('cms/page')->getTitle() ?> Hope this will help.
Thanks, worked very well indeed!