Search code examples
magentocart

Magento display tierprice on cart


I'm facing issues with displaying the tierprice of a product in the Cart and on the confirmation e-mail.

I only get piece price (tierprice + options / qty) but I wan't to show the tierprice of base product in overview.

enter image description here


Solution

  • $product = Mage::getModel('catalog/product')->load($id); //load product from id

    if($product['tier_price'] != NULL) {
        foreach($pro['tier_price'] as $tierPrice){
            echo $tierPrice['price'].'<br/>';
        } }