0

我尝试使用此代码通过自定义模块 xml 来做到这一点

<catalog_product_view>
    <reference name="product.info">
        <block type="custom/myblock" name="myblock" after="addtocart" template="custom/myblock.phtml"/>
    </reference>    
</catalog_product_view>

但它不起作用。如果我将引用名称更改为内容,它会很好,但我想把它放在 addtocard 按钮之后。

如何在那里分配自定义块?

4

2 回答 2

1

试试这个它的工作

<catalog_product_view>
    <reference name="product.info">
        <block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml">
                    <block type="custom/myblock" name="myblock"  template="custom/myblock.phtml"/>
         </block>
    </reference>    
</catalog_product_view>
于 2013-10-17T16:00:09.747 回答
0

试试这个,更新块类型。

<catalog_product_view>
    <reference name="product.info">
        <block type="core/text_list" name="myblock" after="addtocart" template="custom/myblock.phtml"/>
    </reference>    
</catalog_product_view>
于 2013-10-17T14:17:14.500 回答