Big Commerce how to set a minimum checkout amount

To enforce a minimum order on the cart page.
1.Log in to your bigcommerce store
2.click on ‘Store Design’
3.Click the ‘Browse Template Files…’ button
4.On the left side under ‘Panels’ go to “cart.html”
5.Add this to the bottom of your file:


Code:

<script type="text/javascript">
jQuery(document).ready(function(){
var grandTotal = '%%GLOBAL_CartItemTotal%%';
grandTotal= grandTotal.replace('$', '');
grandTotal= grandTotal.replace(',', '');
if(grandTotal >= 10.0) { // CHANGE THIS # TO YOUR MINIMUM ORDER AMOUNT.
$('#CartHeader').show();
$('.ProceedToCheckout').show();
} else {
$('#CartHeader').hide();
$('.ProceedToCheckout').hide();
}
});
</script>

paste the above code right before
Code:

</body>

Now save the file.

———————————————————————–

To enforce a minimum on the Soft Cart Popup
1.Log in to your bigcommerce store
2.click on ‘Store Design’
3.Click the ‘Browse Template Files…’ button
4.On the left side under ‘Snippets’ go to “FastCartThickBoxContent.html”
5.Add this to the bottom of your file:
Code:

<script stye="text/javascript">
jQuery(document).ready(function(){
var subTotal = '%%GLOBAL_fastCartSubtotal%%';
subTotal = subTotal .replace('$', '');
subTotal = subTotal .replace(',', '');
if(subTotal < 10.0) { // CHANGE THIS # TO YOUR MINIMUM ORDER AMOUNT.
$('.CheckoutButton').hide();
$('.GoogleCheckout').hide();
}
});
</script>

paste the above code right before the last
Code:

</div>

Now save the file.

————————————————————–

The checkout buttons will be hidden unless the total is greater than the minimum you set.

* make sure the amount you specify only has ONE trailing 0 after the decimal. Look at the line with the following code
Code:
// CHANGE THIS # TO YOUR MINIMUM ORDER AMOUNT.
Examples:
for a $100.00 dollar minimum order your would enter 100.0 NOT 100.00
for a $150.00 dollar minimum order your would enter 150.0 NOT 150.00
———————————–

Let me know if you are using it, how it works, or if you have any feature requests.
Rob

 

 

One comment

  1. [...] How to set a minimum checkout amount on BigCommerce [...]

Leave a Reply

Your email address will not be published. Required fields are marked *

*

Easy AdSense Lite by Unreal