Get "As low as" price for bundle product in Magento
- by dardub
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.