Back to Blog

Show product tiered pricing in category list in Magento

Published on 22 July 2015

A recent client needed to bring the tiered pricing seen on the product page into their category list views. While there is a few approaches in this, the easiest method I found was to add this snippet to the desired location in

/default/template/catalog/product/list.phtml
<?php $this->setProduct(Mage::getModel('catalog/product')->setStoreId(Mage::app()->getStore()->getId())->load($_product->getId()))
?>
<?php echo $this->getTierPriceHtml() ?>
Show product tiered pricing in category list in Magento | Phil Owen