70

How to Set a Minimum Order Amount in WooCommerce

Powered by WPCodeBox

Easily set a minimum order amount for your WooCommerce store. This snippet displays a customizable error message when the cart total is below your set threshold, ensuring customers meet your minimum purchase requirements.


<?php

add_action( 'woocommerce_checkout_process', function() {
    
	global $woocommerce;
	
	$minimum_order_amount = 50;
	
	if ( $woocommerce->cart->get_cart_total() < $minimum ) {
	    
           $woocommerce->add_error( sprintf( 'The minium order amount is ' . $minimum ) );
	
	    
	}
	
});

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.