我使用 Woocommerce最低订单金额中的代码片段来设置最低订单总额。但我想为每个用户角色设置不同的最小值。
我有一些自定义用户角色:wholesale_prices
、wholesale_vat_exc
和distributor_prices
。我想让代码根据每个角色具有不同最小金额的使用角色来工作。
这是我的代码:
// Minimum order total
add_action( 'woocommerce_check_cart_items', 'wc_minimum_order_amount' );
function wc_minimum_order_amount() {
// Set this variable to specify a minimum order value
$minimum = 300;
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( $minimum ),
wc_price( WC()->cart->subtotal )
), '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( $minimum ),
wc_price( WC()->cart->subtotal )
), 'error'
);
}
}
哈士奇WWW