Calcetines Extreme

Calcetines Extreme
Take care of you using the best socks

Tuesday, September 24, 2013

Remove “ Help Us to Keep Magento Healthy “ from the footer ?

Problem:
On the default template after magento installation you can see a dammed text like this "Help Us to Keep Magento Healthy – Report All Bugs (...", and you can't find the custom option to remove it from configuration and disable or delete that copyright magento default text.

Solution:

First: remove copyright
- Goto Admin > System > Configuration
- Under Configuration > Design

- Expand the Footer & Changes Copy Right Info

Second: remove help us
- Open file "footer.phtml" fronm path "\app\design\frontend\base\default\template\page\html\footer.phtml"

- Then remove copy rights from source code

<div class="footer-container">
    <div class="footer">
        <?php echo $this->getChildHtml() ?>
        <p class="bugs"><?php echo $this->__('Help Us to Keep Magento Healthy') ?> - <a href="http://www.magentocommerce.com/bug-tracking" onclick="this.target='_blank'"><strong><?php echo $this->__('Report All Bugs') ?></strong></a> <?php echo $this->__('(ver. %s)', Mage::getVersion()) ?></p>
        <address><?php echo $this->getCopyright() ?></address>
    </div>

</div>

And refresh Cache Storage Management