plugin-icon

RY City Select for WooCommerce

제작자: Richer Yang·
Show a dropdown select as the cities input on WooCommerce. Auto set the postcode for selected city.
등급
4.9/5
버전
2.1.11
활성화된 설치 항목
2K
최근 업데이트일
Dec 12, 2025

This plubin is based on WC City Select

WooCommerce uses a text input for the customers to enter the city or town. With this plugin you can provide a list of cities to be shown as a select dropdown.

This will be shown in checkout pages, edit addresses pages and shipping calculator if it’s configured that way.

After selected the city or town, auto set the postcode number if is defined.

How to add cities

A list of cities can be added in your theme functions.php file.

Use ry_wc_city_select_cities filter to load your cities. This is done similarly to Add/Modify States. It should be added on your functions.php or a custom plugin.

add_filter( 'ry_wc_city_select_cities', 'my_cities' ); /** * Replace XX with the country code. Instead of YYY, ZZZ use actual state codes. * The City list can list of city name with postcode or just city name. */ function my_cities( $cities ) { $cities['XX'] = array( 'YYY' => array( // city name with postcoe ['City', '100'], ['Another City', '101'] ), 'ZZZ' => array( // just city name 'City 3', 'City 4' ) ); return $cities; }
무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 6.9
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.