我想要在产品页面的简短描述下包含“wrapper.phtml”的移动块。
我必须使用view.phtml还是catalog.xml?
我怎样才能移动这个街区?
最佳答案
将块移动到产品页,
您必须将代码放入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>
关于php - magento 1.9-将块移动到产品页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40563806/