为WooCommerce中的特定选定付款方式添加折扣

时间:2017-12-23 21:12:08

标签: php wordpress woocommerce checkout discount

如果没有使用优惠券功能,我希望对特定的付款方式ID应用15%的折扣,例如' xyz'。

我想帮助识别要使用的钩子。我想要实现的一般想法是:

if payment_method_hook == 'xyz'{
    cart_subtotal = cart_subtotal - 15%
}

客户无需在此页面上看到折扣。我希望正确提交折扣,仅适用于特定的付款方式。

2 个答案:

答案 0 :(得分:2)

您可以使用此woocommerce_cart_calculate_fees动作挂钩中挂钩的自定义功能,即可为定义的付款方式折扣15%。

您应该在此功能中设置真实的付款方式ID (例如' bacs',' cod',' check'或&# 39;贝宝'。)

每次选择付款方式时,第二个功能都会刷新结帐数据。

代码:

add_action( 'woocommerce_cart_calculate_fees','shipping_method_discount', 20, 1 );
function shipping_method_discount( $cart_object ) {

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

    // HERE Define your targeted shipping method ID
    $payment_method = 'bacs';

    // The percent to apply
    $percent = 15; // 15%

    $cart_total = $cart_object->subtotal_ex_tax;
    $chosen_payment_method = WC()->session->get('chosen_payment_method');

    if( $payment_method == $chosen_payment_method ){
        $label_text = __( "Shipping discount 15%" );
        // Calculation
        $discount = number_format(($cart_total / 100) * $percent, 2);
        // Add the discount
        $cart_object->add_fee( $label_text, -$discount, false );
    }
}

add_action( 'woocommerce_review_order_before_payment', 'refresh_payment_methods' );
function refresh_payment_methods(){
    // jQuery code
    ?>
    <script type="text/javascript">
        (function($){
            $( 'form.checkout' ).on( 'change', 'input[name^="payment_method"]', function() {
                $('body').trigger('update_checkout');
            });
        })(jQuery);
    </script>
    <?php
}

代码放在活动子主题(或活动主题)的function.php文件中。

经过测试和工作。

答案 1 :(得分:0)

这可能会对其他人有所帮助。我需要检查两种付款方式,并检查用户是否是特定角色。

if (($chosen_payment_method == 'stripe' || $chosen_payment_method == 'paypal') && current_user_can('dealer')) {