Make state checkout field required for a specific

2019-08-05 07:18发布

The country of Vietnam in Woocommerce does not have the states, so I added some states to my checkout page.

This is my code:

add_filter( 'woocommerce_states', 'vietnam_cities_woocommerce' );
   function vietnam_cities_woocommerce( $states ) {
     $states['VN'] = array(
      'HCM' => __('Hồ Chí Minh', 'woocommerce') ,
      'HANOI' => __('Hà Nội', 'woocommerce') ,
      'HAIPHONG' => __('Hải Phòng', 'woocommerce') ,
           );
      return $states;
}

It do work as I would like, but it is an optional field for Vietnam.

How to make this state field as required for Vietnam?

Any help is appreciated.

1条回答
We Are One
2楼-- · 2019-08-05 08:08

The following function will make for Vietnam the state field as a required in woocommerce:

add_filter( 'woocommerce_get_country_locale', 'custom_country_locale', 10, 1 );
function custom_default_address_fields( $locale ) {
    $locale['VN']['state']['required'] = true;

    return $locale;
}

Code goes in function.php file of your active child theme (active theme). Tested and works.

查看更多
登录 后发表回答