Magento 2 – Get the Original Price and Special Price of a Bundle Product

Regular Minimal Price:

$_product->getPriceInfo()->getPrice('regular_price')->getMinimalPrice()->getValue();

Regular Maximal Price:

$_product->getPriceInfo()->getPrice('regular_price')->getMaximalPrice()->getValue();

Special Minimal Price:

$_product->getPriceInfo()->getPrice('final_price')->getMinimalPrice()->getValue();

Special Maximal Price:

$_product->getPriceInfo()->getPrice('final_price')->getMaximalPrice()->getValue();

Leave a comment

Your email address will not be published. Required fields are marked *