我是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然后它也显示在前端。
答案 0 :(得分:3)
转到管理部分系统&gt;配置&gt;高级&gt;开发人员&gt;调试然后启用模板路径提示。在此之后刷新您的网站前端。
您将从正在加载文件的主题中获取正确的信息。
然后更改正确的footer.phtml文件。
此消息将消失。 我认为你是magento的新手。
为了更好的知识阅读Design Packages
答案 1 :(得分:0)
这是一个缓存问题。
导航到您网站的缓存:
public_html/var/cache //Or where ever the route of your Magento cart is.
然后删除var目录中的所有内容!
刷新您的网站并显示您的更改。