Creating a minimum amount for order
If you want to create a minimum amount for an order (for example, not allow orders below $25), try this: Right before this section on CWIncShowCart.php:
<form action="<?php echo($cartweaver->thisPage);?>" method="post" name="PlaceOrder">
add some code to check the order subtotal:
<?php
if($_SESSION["cartSubtotal"] < 25) {
echo("You must order $25 or more. Go back to correct.");
echo($cartweaver->cartLinks());
exit();
}?>



Blog RSS feed













