0

如何在 Magento 的购物车页面上显示等级价格?

我知道 getTierPriceHtml() 方法仅适用于列表和详细信息页面,因此我们不能在购物车页面上使用它。

我正在编辑 /template/checkout/cart/item/default.phtml

4

1 回答 1

0

您还希望购物车页面中的等级价格。我认为这对您的功能很有用

您可以直接在checkout/cart/item/default.phtml 中使用此代码:$_item = $this->getItem();之后 (第 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

于 2014-06-26T06:10:07.717 回答