提问者:小点点

在Woocommerce中禁用特定付款方式的配送方式


在WooCommerce上,我启用了两种送货方式:免费送货或统一费率。我启用了2种付款方式:银行转账和PayPal(贝宝)。

我想要实现的是:如果客户选择PayPal作为支付类型,他应该被迫选择“统一费率”作为发货方式。“免费送货”应该是隐藏的或灰色的或类似的东西。

如果选择银行转账,那么两种运输方式都应该可用。

感谢您的帮助。


共2个答案

匿名用户

如果有人感兴趣,我找到了一个解决方案:

function alter_payment_gateways( $list ){
    // Retrieve chosen shipping options from all possible packages
    $chosen_rates = ( isset( WC()->session ) ) ? WC()->session->get( 'chosen_shipping_methods' ) : array();
    if( in_array( 'free_shipping:1', $chosen_rates ) ) {
        $array_diff = array('WC_Gateway_Paypal');
        $list = array_diff( $list, $array_diff );
    }
    return $list;
}
add_action('woocommerce_payment_gateways', 'alter_payment_gateways');

如果客户选择免费送货,此代码将停用PayPal。

匿名用户

更新2:选择“paypal”付款方式时,以下代码将禁用“免费送货””送货方式(方法ID):

add_filter( 'woocommerce_package_rates', 'shipping_methods_based_on_chosen_payment', 100, 2 );
function shipping_methods_based_on_chosen_payment( $rates, $package ) {
    // Checking if "paypal" is the chosen payment method
    if ( WC()->session->get( 'chosen_payment_method' ) === 'paypal' ) {
        // Loop through shipping methods rates
        foreach( $rates as $rate_key => $rate ){
            if ( 'free_shipping' === $rate->method_id ) {
                unset($rates[$rate_key]); // Remove 'Free shipping'shipping method
            }
        }
    }
    return $rates;
}

// Enabling, disabling and refreshing session shipping methods data
add_action( 'woocommerce_checkout_update_order_review', 'refresh_shipping_methods', 10, 1 );
function refresh_shipping_methods( $post_data ){
    $bool = true;
    if ( WC()->session->get('chosen_payment_method' ) ) $bool = false;

    // Mandatory to make it work with shipping methods
    foreach ( WC()->cart->get_shipping_packages() as $package_key => $package ){
        WC()->session->set( 'shipping_for_package_' . $package_key, $bool );
    }
    WC()->cart->calculate_shipping();
}

// Jquery script for checkout page
add_action('wp_footer', 'refresh_checkout_on_payment_method_change' );
function refresh_checkout_on_payment_method_change() {
    // Only checkout page
    if( is_checkout() && ! is_wc_endpoint_url() ):
    ?>
    <script type="text/javascript">
    jQuery(function($){
        // On shipping method change
        $('form.checkout').on( 'change', 'input[name^="payment_method"]', function(){
            $('body').trigger('update_checkout'); // Trigger Ajax checkout refresh
        });
    })
    </script>
    <?php
    endif;
}

代码进入函数。活动子主题(或活动主题)的php文件。测试和工作。

要获取相关的运输方法费率ID,如扁平费率:12,请使用浏览器代码检查器检查每个相关单选按钮属性名称,如:

注意:由于WooCommerce的新版本发生了更改,很抱歉,代码不再工作。