我想在我的magento-1.6网站的标题栏上加载我的'wishlist'。 我使用的是magento1.6.2.0。现在我的愿望清单出现在左侧区块。 我刚刚将wishlist.xml的引用从左边更改为标题,如
<reference name="header">
<block type="wishlist/customer_sidebar" name="wishlist_sidebar" as="wishlist" template="wishlist/sidebar.phtml"/>
</reference>
但它不会来 我怎么能实现那个......?我要编辑哪个xml文件..?
答案 0 :(得分:5)
所有布局XML文件都是一个 - 也就是说,它们作为典型渲染的一部分合并。
您需要编辑页面/ html / header.phtml文件并添加以下代码:
<?php echo $this->getChildHtml('wishlist') ?>
在您执行任何此操作之前,您应该阅读Official Magento Knowledge Base上的文章,特别注意主题层次结构和开发人员文章。获得主题自定义的时间是在项目的开始。