如何在magento框架中编辑页脚部分?

如何在magento框架中编辑页脚部分?,magento,Magento,我是magento的新手。我想更改页脚部分。 我的页脚文件路径:D:\wamp\www\magento\app\design\frontend\base\default\template\page\html\footer.phtml <div class="footer-container"> <div class="footer"> <?php echo $this->getChildHtml() ?> <p class="bug

我是magento的新手。我想更改页脚部分。 我的页脚文件路径:D:\wamp\www\magento\app\design\frontend\base\default\template\page\html\footer.phtml

<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>

-

现在我想删除帮助我们保持句子

请告诉我如何删除这个


我已经删除了fulll,然后它也显示在前端。

转到管理部分系统>配置>高级>开发人员>调试,然后启用模板路径提示。在此之后,请刷新您的站点前端

您将获得加载文件的主题的正确信息

然后更改正确的footer.phtml文件

这条消息将被发送出去。 我想你是马根托的新手

要获得更好的知识,请阅读

这是一个缓存问题

导航到站点的缓存:

public_html/var/cache //Or where ever the route of your Magento cart is.
然后删除var目录中的所有内容


刷新您的站点,您的更改就会出现。

您确定您的文件路径正确吗?或者你使用不同的主题?启用模板文件路径提示,检查是否有正确的文件,最后清除缓存。