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 5ed3aa3 commit cebc94cCopy full SHA for cebc94c
app/code/Magento/Catalog/Pricing/Price/ConfiguredRegularPrice.php
@@ -70,6 +70,11 @@ public function setItem(ItemInterface $item)
70
public function getValue()
71
{
72
$basePrice = parent::getValue();
73
+
74
+ if ($basePrice === false) {
75
+ return $basePrice;
76
+ }
77
78
return $this->item
79
? $basePrice + $this->configuredOptions->getItemOptionsValue($basePrice, $this->item)
80
: $basePrice;
0 commit comments