如何在Magento的购物车页面上显示等级价格?
我知道方法getTierPriceHtml()仅适用于List and Detail页面,所以我们不能在购物车页面上使用它。
我正在编辑/template/checkout/cart/item/default.phtml
答案 0 :(得分:0)
您还希望购物车页面中的等级价格。我认为这对您的功能非常有用
您可以在 $ _ item = $ this-> getItem()之后的 checkout / cart / item / default.phtml: 中直接使用此代码; (第28行)....
**$tierPrice = $this->getLayout()->createBlock(
'catalog/product_view',
'product.tierprices',
array(
'product_id' => $_item->getProductId()
)
); **
**$tierPrice->setTemplate('catalog/product/view/tierprices.phtml');**
**echo $tierPrice->getTierPriceHtml();**
您可以创建自己的样式模板,也可以使用它来代替catalog / product / view / tierprice.phml,例如catalog / product / view / tierprice1.phml