我有一个自定义magento主题,现在正常工作一段时间。最近客户想要添加分组产品,现在我需要更改布局以便它适合。
这是我的问题: 当我查看打开模板路径提示的页面时,几乎所有内容都使用我的自定义模板,如下所示:
frontend/[MYTEMPLATE]/default/template/catalog/product/view/attributes.phtml
frontend/[MYTEMPLATE]/default/template/catalog/product/price.phtml
frontend/[MYTEMPLATE]/default/template/catalog/product/view/addtocart.phtml
等等...等等......
但是,对于分组产品,使用以下内容:
frontend/base/default/template/catalog/product/view/type/grouped.phtml
我使用相同的结构将groups.phtml复制到我的模板文件夹,但是没有加载。
我的catalog.xml显示以下内容:
<PRODUCT_TYPE_grouped translate="label" module="catalog">
<label>Catalog Product View (Grouped)</label>
<reference name="product.info">
<block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml">
<block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label">
<label>Product Extra Info</label>
</block>
</block>
</reference>
</PRODUCT_TYPE_grouped>
关闭缓存。
我确定我在这里遗漏了为什么它没有使用我的模板文件夹中的grouped.phtml,但我似乎无法找到它。