我是magento的新来者。在学习过程中,我想知道如何在捆绑的产品页面中添加块。我通过Google找到的那条信息不知道该怎么办。
答案 0 :(得分:0)
这取决于您要放置的位置,我假设您有一个带有local.xml
文件的主题设置,但是您也可以在Admin->Manage Products->Edit Product->Design->Custom Layout Update
的产品编辑页面中添加该部分。
在app/design/frontend/[your-theme]/[your-subtheme]/layout/local.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