Hello Mike,
Hello, at me a problem with a total amount of the order. It is necessary, that the buyer could not create the order with the sum, smaller, than 30 $, or other condition.
It's not a common functionality in ViArt but you cam manually modify the order_info.php file by adding the following lines into your local version
if ($goods_total < 30) {
$r->errors = "Minimum order value is 30.";
}
just before following line:
if(strlen($operation))
Thanks,
ViArt Support Team