WooCommerce - 制作一套优惠券,为订单添加固定费用

时间:2016-08-12 22:50:49

标签: php wordpress woocommerce cart fee

客户有一个非常奇怪的请求:他们想要一组优惠券代码向订单添加费用。这可能吗?

他们试图解决的问题是:

目前,该商店提供免费送货到美国48个以下的国​​家,我已为其配备了正确配置的运费等级和桌子费率。但是,客户在每日交易网站上销售的优惠券应该取消免费送货优惠并增加固定运费。

如何实现这一目标?

1 个答案:

答案 0 :(得分:4)

是的,您可以使用该代码段(对于一组优惠券)来执行此操作:

function coupon_add_cart_fee( $bookable_total = 0 ) {
    $has_coupon = false;

    // Set here your specials coupons slugs (one by line - last one have no coma)
    $coupon_codes = array (
        'your_coupon_code_slug1',
        'your_coupon_code_slug2',
        'your_coupon_code_slug3' 
    );

    // Set here your fee amount or make fees calculation (see the links in reference)
    $fee = 20;

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // checking if that "special" coupon is applied to customer cart
    foreach ($coupon_codes as $coupon_code) {
        if ( WC()->cart->has_discount( $coupon_code ) ) {

            // If yes apply the fee to the cart
            if ( !$has_coupon ) {
                $has_coupon = true;
                break;
            }
        }
    }

    if ( $has_coupon ) {
        WC()->cart->add_fee( 'Fees: ', $fee, false );
    }
}
add_action( 'woocommerce_cart_calculate_fees','coupon_add_cart_fee' );

此代码经过测试且有效。 它会显示您的活动子主题或主题的function.php文件。

  

使用 add_fee() method

的税收选项      

重要事项:TAX 工作与否add_fee() method相关的事实取决于woocommerce中的您的首次税务设置

     

类WC_Cart add_fee()方法,为购物车增加额外费用。

add_fee( string $name, float $amount, boolean $taxable = false, string $tax_class = ''  )> <!-- language: lang-css -->

Parameters:
    $name      Unique name for the fee. Multiple fees of the same name cannot be added.
    $amount    Fee amount.
    $taxable   (default: false) Is the fee taxable?
    $tax_class    (default: '') The tax class for the fee if taxable. A blank string is standard tax class.

<强>参考: