0

我有一个自定义的 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

我使用相同的结构将该 grouped.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 的内容,但我似乎找不到它。

4

0 回答 0