Magento News

 

Changing meta info through ftp

by Mark (Posted Fri, 16 Apr 2010 09:49:03 GMT)
FINALLY!

This is what I have been looking for, in:
appcodecoreMagePageBlockHtmlHead.php

Code:

public function getTitle
()
    {
        if (empty($this->_data['title'])) {
            $this->_data['title'] = $this->getDefaultTitle();
        }
        if($this->fpseo_isHome())
        {$this->_data['title'] = "~~~~~~TITLE HERE~~~~~";}
        return htmlspecialchars(html_entity_decode($this->_data['title'], ENT_QUOTES, 'UTF-8'));
    }

    public function getDefaultTitle()
    {
        return Mage::getStoreConfig('design/head/default_title');
    }
 

I have no idea why this has been altered this way, but hey…



http://magento-forum.co.uk/viewtopic.php?f=6&t=201#p740

Magento Forum

Possibly Related Posts:


 

Leave a Reply