Question

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.

Was it helpful?

Solution 2

Turns out that the product with with the way that the products had been imported.

After fixing the import to set the price type on the bundle product to be dynamic then the index table was filled.

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top