Minimum Order Price
I might have missed this somewhere, but I want to set a minimum order price of $75. It does not matter about the product or quantity, the minimum subtotal has to be $75.
Can I do this in the calculations?
thx
Eric
I might have missed this somewhere, but I want to set a minimum order price of $75. It does not matter about the product or quantity, the minimum subtotal has to be $75.
Can I do this in the calculations?
thx
Eric
on the cart page, use an if statement to hide the checkout button if the minimum price is not met:
<?php if($yourCartObject->GrandTotal() >= 75) { ?>
<checkout button>
<?php } ?>
where yourCartObject is the name of your cart object
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.