We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4c4e0 commit 5a0ede6Copy full SHA for 5a0ede6
app/code/Magento/Wishlist/Pricing/ConfiguredPrice/ConfigurableProduct.php
@@ -57,8 +57,10 @@ public function getConfiguredRegularAmount(): \Magento\Framework\Pricing\Amount\
57
*/
58
public function getValue()
59
{
60
- $price = $this->getProduct()->getPriceInfo()->getPrice(self::PRICE_CODE)->getValue();
61
-
+ $price = $this->getProduct()->getMinimalPrice();
+ if(!$price) {
62
+ $price = $this->getProduct()->getPriceInfo()->getPrice(self::PRICE_CODE)->getValue();
63
+ }
64
return max(0, $price);
65
}
66
0 commit comments