magento如何将块添加到捆绑的产品页面

时间:2018-10-13 06:47:19

标签: magento

我是magento的新来者。在学习过程中,我想知道如何在捆绑的产品页面中添加块。我通过Google找到的那条信息不知道该怎么办。

1 个答案:

答案 0 :(得分:0)

这取决于您要放置的位置,我假设您有一个带有local.xml文件的主题设置,但是您也可以在Admin->Manage Products->Edit Product->Design->Custom Layout Update的产品编辑页面中添加该部分。

app/design/frontend/[your-theme]/[your-subtheme]/layout/local.xml

中添加的xml
    <PRODUCT_TYPE_bundle>
        <reference name="content">
            <block name="yourtheme_yoursubtheme_nameofblock" type="core/text" template="path/to/your/template.phtml" />
        </reference>
    </PRODUCT_TYPE_bundle>    

这会将app/design/frontend/[your-theme]/[your-subtheme]/template/path/to/your/template.phtml的输出添加到每个捆绑类型产品页面的底部。您可能需要阅读Magento Layout XML