Get "As low as" price for bundle product in Magento

Posted by dardub on Stack Overflow See other posts from Stack Overflow or by dardub
Published on 2010-05-28T22:38:52Z Indexed on 2010/05/28 22:42 UTC
Read the original article Hit count: 382

Filed under:
|

I'm trying to display a list of bundled products using my custom template. I'm not able to display the dynamic price of the bundle product. Previously for simple products I used:

$product->getPrice(); 

which worked, but it just displays $0.00 for bundle items.

looking at ../catalog/products/list.phtml I tried

$this->$getPriceHtml($product, true);

after extending my block to Mage_Catalog_Block_Product_Abstract I got simple products working again, but bundle products still show $0.00

Is there another way to display the as low as price for dynamic bundle prices?

I cleared cache and reindexed and all that good stuff. The price shows up correctly under the default category list, just not under my custom page.

© Stack Overflow or respective owner

Related posts about php

Related posts about magento