尝试将新的购物车块添加到local.xml中的标头,这就是我所拥有的
<default>
<reference name="header">
<block type="checkout/cart_sidebar" name="cart_topbar" as="topCart" template="checkout/cart/top-cart.phtml"/>
</reference>
</default>
然后在标题中我用<?php echo $this->getChildHtml('topCart')?>
调用它,但它没有显示任何内容。
如果我尝试将类型更改为type="core/template"
,则模板将显示内容。所以这让我觉得我错过了checkout/cart_sidebar
类型特有的东西?
top-cart.phtml
文件simple包含一个文本行以消除其中的任何内容。
答案 0 :(得分:1)
那是你的local.xml吗?
语法正确。
您是否修改了Mage / Checkout / Block / Cart / Sidebar.php中的任何其他内容?