我要在购物车小计为0时添加特殊折扣。此折扣将应用于包括运费在内的购物车总额。
function add_discount_line( $cart ) {
global $woocommerce;
if($woocommerce->cart->get_applied_coupons() && $cart->subtotal==0){
$discount = 2; // here I want the amount of applied coupon
$cart->add_fee( __( 'Special Discount', 'woocommerce' ) , -$discount );
}
}
add_action( 'woocommerce_cart_calculate_fees', 'add_discount_line' );
$ discount = 2; //在这里如何获得已应用优惠券的折扣金额。
答案 0 :(得分:1)
我想要的解决方案。
<label id='input-label' for='input'>Label:</label>
<input id='input' type='text' value='Input' />