plugin-icon

RY City Select for WooCommerce

作者 Richer Yang·
在 WooCommerce 中的鄉鎮市輸入欄位以下拉選單來呈現。且會自動輸入對應的郵遞區號。
評價
4.9/5
版本
2.1.11
活躍安裝總數
2K
最近更新:
Dec 12, 2025

這一個外掛是基於 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.

如何新增鄉鎮市清單

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 6.9
此外掛程式已可供下載,並可用於你 系統。