根据选择的付款方式更改Woocommerce购物车物品税类

时间:2019-04-08 02:25:59

标签: php jquery wordpress woocommerce payment-method

我已尝试根据特定用户对付款网关的更改或其他一些字段的更改来刷新结帐,以实现特定用户在许多答案中在本网站上找到的代码。但是,当JS包含在我的函数文件中时,我的结帐卡住了,并且Ajax加载了动画圆圈。

我已经尝试修改以下代码:

Trigger ajax update_checkout event on shipping methods change in Woocommerce

Update checkout ajax event when choosing a payment gateway in Woocommerce

On country change ajax update checkout for shipping in Woocommerce

Change Pay button on checkout based on Woocommerce chosen payment method

add_filter( "woocommerce_product_get_tax_class", "woo_diff_rate_for_user", 1, 2 );
add_filter( "woocommerce_product_variation_get_tax_class", "woo_diff_rate_for_user", 1, 2 );
function woo_diff_rate_for_user( $tax_class, $product ) {

// Get the chosen payment gateway (dynamically)
$chosen_payment_method = WC()->session->get('chosen_payment_method');

 if( $chosen_payment_method == 'wdc_woo_credits'){
        $tax_class = "Zero rate";
    } 

<script type="text/javascript">
        (function($){
            $('form.checkout').on( 'change', 'input[name^="payment_method"]', function() {
                var t = { updateTimer: !1,  dirtyInput: !1,
                    reset_update_checkout_timer: function() {
                        clearTimeout(t.updateTimer)
                    },  trigger_update_checkout: function() {
                        t.reset_update_checkout_timer(), t.dirtyInput = !1,
                        $(document.body).trigger("update_checkout")
                    }
                };
                $(document.body).trigger('update_checkout')
            });
        })(jQuery);
    </script>
     return $tax_class;
}

如果我不包括JS / jQuery,则在更改送货方式并且页面随更改而刷新时,基于付款选项更改税种的函数也可以使用。但是我需要在结账时刷新付款网关,而不是在更改运费时刷新。

1 个答案:

答案 0 :(得分:0)

您不能在过滤器挂钩中包含这种jQuery脚本,并且代码中有错误。无论如何,即使是税种变更,您也没有使用正确的代码。

替换代码:

add_action( 'woocommerce_before_calculate_totals', 'change_tax_class_based_on_payment_method', 10, 1 );
function change_tax_class_based_on_payment_method( $cart ) {
    // Only for a specific defined payment meyhod
    if ( WC()->session->get('chosen_payment_method') !== 'wdc_woo_credits' )
        return;

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

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    // Loop through cart items
    foreach( $cart->get_cart() as $cart_item ){
        // We set "Zero rate" tax class
        $cart_item['data']->set_tax_class("Zero rate");
    }
}

add_action('wp_footer', 'payment_methods_trigger_update_checkout');
function payment_methods_trigger_update_checkout() {
    if( is_checkout() && ! is_wc_endpoint_url() ) :
    ?>
    <script type="text/javascript">
        jQuery(function($){
            $( 'form.checkout' ).on('change', 'input[name="payment_method"]', function() {
                $(document.body).trigger('update_checkout');
            });
        });
    </script>
    <?php
    endif;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

  

如果您使用Woo Credits插件,则正确的付款ID是woo_credits,而不是wdc_woo_credits