Bundle Product Default Selection Price in Magento – Pricing Guide

bundled-productee-1.13indexingprice

I have a bundle product set-up which has a default selection in the admin section. The bundle product uses the dynamic pricing option and all the prices and tier prices are on the option's products.

How can I get the price information for the bundle product with this default selection?

On further investigation it appears that the index is not finding any bundle products to index.

Best Answer

You can get bundle product max and min price using this model function

Mage::getModel('bundle/product_price')->getTotalPrices($_product,'max',1);

Where 1 inidcate whether you want bundle product price with include tax.

Related Topic