2

我是 Magento 的新手,所以如果这是一个新手问题,请原谅

基本上在 layout.xml 文件中有一个块声明如下:

<block type="checkout/cart" name="checkout.cart">
     <action method="setCartTemplate"><value>checkout/cart.phtml</value></action>
     <action method="setEmptyTemplate"><value>checkout/cart/noItems.phtml</value></action>
     <action method="chooseTemplate"/>
     <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/item/default.phtml</template></action>
     <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/item/default.phtml</template></action>
     <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/item/default.phtml</template></action>

我想<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/item/default.phtml</template></action>用自定义模板覆盖。

既然这里调用了一个方法,那模板怎么改呢?

非常感谢!

Krt_马耳他

4

1 回答 1

5

在您的模块布局文件或 local.xml

<reference name="checkout.cart">
   <action method="addItemRender">
      <type>simple</type><block>checkout/cart_item_renderer</block><template>path/to/your/item/default.phtml</template>
   </action>
</reference>

模板文件的路径是相对于您的主题模板文件夹的

您可能需要查看 http://www.classyllama.com/development/magento-development/the-better-way-to-modify-magento-layout

于 2012-05-11T20:28:57.397 回答