3

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

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

请告诉我如何删除这个

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

4

2 回答 2

4

转到管理部分 System>Configuration>Advanced>Developer>Debug 然后启用模板路径提示。在此之后刷新您的网站前端。

您将从正在加载文件的主题中获得正确的信息。

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

此消息将消失。我认为您是 magento 的新手。

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

于 2013-04-02T05:17:39.340 回答
0

这是一个缓存问题。

导航到您网站的缓存:

public_html/var/cache //Or where ever the route of your Magento cart is.

然后删除var目录下的所有东西!

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

于 2013-12-09T22:05:19.110 回答