Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
vovs968
vovs968
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.
 
Thanks for help.
Last modified: 7 Aug 2006 11:13 AM
 
Vito
Vito
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
 
 
 
vovs968
vovs968
Thanks !