magento 1.9 - 将块移动到产品页面
问题描述:
答
您可以使用catalog.xml更改块。您可以在catalog.xml中找到名称为“product.info.options.wrapper”的块。
答
对于将块移动到产品页面, 必须将代码放入catalog.xml中。
<block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
例如:
<catalog_product_view translate="label">
<reference name="content">
<block type="core/template" name="product.info.options.wrapper" as="product_options_wrapper" template="{your_file_path}/wrapper.phtml" translate="label">
</reference>
</catalog_product_view>
可以请您详细阐述它你这是什么意思移动块 – OBAID