我创建了两个新块,应该在这个块之前和之后输出:
<block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
为此,我创建了一个新模块,用于更新布局。在引用的 XML 文件中表示:
<catalog_product_view>
<reference name="product.info">
<block type="disablecartonlogout/output" name="disablecartonlogout.outputbefore" as="whatever" before="product.info.addtocart" template="disablecartonlogout/product-options-bottom-before.phtml" />
<block type="disablecartonlogout/output" name="disablecartonlogout.outputafter" as="whatever" after="product.info.addtocart" template="disablecartonlogout/product-options-bottom-after.phtml" />
</reference>
</catalog_product_view>
我没有输出。如果我更改对“内容”的引用,块将被输出,但位置错误。
你能告诉我,我做错了什么吗?