how can i set up Minimum Order Amount but at the same time allow free products to be ordered ? when i try to checkout with a free product i get the Minimum Order Amount error.
i only want this error to be given to orders that have a price that is greater than 0
Solved! Go to Solution.
found it.
i changed
if ($this->getBaseSubtotalWithDiscount() < $amount) { return false; }
to
if ($this->getBaseSubtotalWithDiscount() < $amount) { if ($this->getBaseSubtotalWithDiscount() > 0) { return false; } }
in
app/code/core/Mage/Sales/Model/Quote/Address.php
found it.
i changed
if ($this->getBaseSubtotalWithDiscount() < $amount) { return false; }
to
if ($this->getBaseSubtotalWithDiscount() < $amount) { if ($this->getBaseSubtotalWithDiscount() > 0) { return false; } }
in
app/code/core/Mage/Sales/Model/Quote/Address.php