骑过magento模板文件

时间:2014-12-06 05:17:09

标签: magento templates override cart

我想在我的扩展程序中结束checkout / cart / item / default.phtml文件,以便在产品名称下方的购物车页面上添加某些详细信息

2 个答案:

答案 0 :(得分:0)

我认为将此模板覆盖到您的模块不是一个选项。您需要找到一种方法将数据发送到此模板,以便您可以修改此模板以添加详细信息。

答案 1 :(得分:0)

我希望这可以适用于您的情况

 <checkout_cart_index translate="label">
 <reference name="checkout.cart">
  <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>ext_name/checkout/cart/item/default.phtml</template></action>
            <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>ext_name/checkout/cart/item/default.phtml</template></action>
            <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>ext_name/checkout/cart/item/default.phtml</template></action>

 </reference>
 </checkout_cart_index>

将此代码放在扩展程序的xml文件中,我希望它能正常工作