我有一个新的产品类型,当在购物车页面上时,我需要为该自定义产品类型显示不同的 cart.phtml。如果我这样设置,所有产品类型都将使用这个新的 cart.phtml。
<checkout_cart_index>
<reference name="checkout.cart">
<action method="setTemplate">
<template>mymodule/checkout/cart.phtml</template>
</action>
</reference>
</checkout_cart_index>
但是,如果我使用它,它就不起作用。
<PRODUCT_TYPE_custom module="catalog">
<reference name="checkout.cart">
<action method="setTemplate">
<template>mymodule/checkout/cart.phtml</template>
</action>
</reference>
</PRODUCT_TYPE_custom>
还有其他方法吗?提前致谢。