在送货方式标签上要求开具计费电话

时间:2019-06-27 09:19:21

标签: woocommerce hook-woocommerce

如果所选货运的标签值为“第一类”,则需要如何制作计费电话。

我该怎么做。

add_filter('woocommerce_checkout_fields', 'xa_remove_billing_checkout_fields');

function xa_remove_billing_checkout_fields($fields) {
    $shipping_method ='flat_rate'; // Set the desired shipping method to hide the checkout field(s).
    global $woocommerce;
    $chosen_methods = WC()->session->get( 'chosen_shipping_methods' );
    $chosen_shipping = $chosen_methods[0];

    if ($chosen_shipping == $shipping_method) {
       $fields['billing_phone']['required'] = true;
    }
    return $fields;
}

0 个答案:

没有答案