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 88d06ca commit d07e184Copy full SHA for d07e184
app/code/Magento/Catalog/Model/Product/Type/FrontSpecialPrice.php
@@ -69,6 +69,10 @@ public function __construct(
69
*/
70
protected function _applySpecialPrice($product, $finalPrice)
71
{
72
+ if (!$product->getSpecialPrice()) {
73
+ return $finalPrice;
74
+ }
75
+
76
$specialPrices = $this->getSpecialPrices($product);
77
$specialPrice = !(empty($specialPrices)) ? min($specialPrices) : $product->getSpecialPrice();
78
0 commit comments