Установите минимальную подтотальную сумму в корзине Woocommerce

//Just Put This Code Into functions.php Of Your Wordpress Site
/**
 * Set a minimum subtotal amount in Woocommerce cart
 */
add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );
add_action( 'woocommerce_before_cart' , 'wc_minimum_order_amount' );

function wc_minimum_order_amount() {
    // Set this variable to specify a minimum order value
    $minimum = 149000;

    if ( WC()->cart->subtotal < $minimum ) {

        if( is_cart() ) {

            wc_print_notice( 
                sprintf( "You must have an order with a minimum of %s to place your order, your current order total is %s.",
                    wc_price( WC()->cart->subtotal ), 
                    wc_price( $minimum )
                ), 'error' 
            );

        } else {

            wc_add_notice( 
                sprintf( "You must have an order with a minimum of %s to place your order, your current order total is %s." , 
                    wc_price( WC()->cart->subtotal ), 
                    wc_price( $minimum )
                ), 'error' 
            );

        }
    }

}
Amin Arjmand