Skip to content

Instantly share code, notes, and snippets.

@pattikawa
pattikawa / Woocommerce: Set a minimum amount for order outside your country before checking out
Last active February 9, 2018 15:55
Woocommerce: Set a minimum amount for order outside your country before checking out
// Set a minimum amount for order outside Indonesia before checking out
add_action( 'woocommerce_check_cart_items', 'cw_min_num_products' );
// Only run in the Cart or Checkout pages
function cw_min_num_products() {
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set a minimum amount of oder based on shipping zone before checking out
add_action( 'woocommerce_check_cart_items', 'cw_min_num_products' );
// Only run in the Cart or Checkout pages
function cw_min_num_products() {
if( is_cart() || is_checkout() ) {
global $woocommerce;