我想摆脱我网站页脚中的链接,有人启动了该网站的开发并离开了,现在我无法修改它,因为当我在 footer.phtml 中时,我可以看到该代码:
<!-- Footer -->
<div id="footer">
<ul>
<li><?php echo $this->getCopyright(); ?></li>
</ul>
<?php echo Mage::getModel('core/variable')->loadByCode('footer_navigation')->getValue('html'); ?>
<div class="cl"> </div>
</div>
<!-- /Footer -->
我找不到那个班级正在寻找链接的地方Mage::getModel('core/variable')->loadByCode('footer_navigation')->getValue('html')
我一直在寻找我找到的catalog.xml,<reference name="footer_links">
但如果我删除里面的代码,什么也没有发生,它似乎没有以任何方式与之链接。
我在我的菜单中遇到了同样的问题,我看到我不明白的那个类:$categories = $this->renderCategoriesMenuHtmlCustom2(0, 'level-top');
那也指的是哪里?
谢谢 :)