Beskrivning
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;
}
Installation
Minimum Requirements
- PHP 7.4+
- WordPress 5.6+
- WooCommerce 6.0+
Vanliga frågor
-
Where can I contribute the cities list of my country?
-
Please use GitHub repository.
Use issuu give me the list, or use pull requests the file change.If your country don’t have states list in woocommerce (see file /woocommerce/i18n/states.php).
You also need contribute the states list.The sample file is cities/TW.php and states/TW.php
-
Where can I report bugs or contribute to the project?
-
Report bugs on the GitHub repository,
or my person website page. -
All cities list from http://geonames.org/
-
From the RY-WC-City-Select-cities-files
You can add almost main states and cities list in the world.
But some state or city may use different name with the official name.To enable geonames.org data, add code into you theme functions.php.
Or use Code Snippets[https://wordpress.org/plugins/code-snippets/] to add code.add_filter('ry_wei_load_geonames_org', '__return_true');
Recensioner
Bidragsgivare och utvecklare
”RY WC City Select” är programvara med öppen källkod. Följande personer har bidragit till detta tillägg.
Bidragande personer”RY WC City Select” har översatts till 1 språk. Tack till översättarna för deras bidrag.
Översätt ”RY WC City Select” till ditt språk.
Intresserad av programutveckling?
Läs programkoden, kika på SVN-filförvaret eller prenumerera på utvecklarloggen via RSS.
Ändringslogg
1.1.3 – 2023/02/13
- Change main class name.
1.1.2 – 2022/07/16
- Change plugin info.
1.1.1 – 2022/06-03
- add Romanian cities. (by condor2)
1.1.0 – 2022/04/04
- postal code clear with selected no postal code city (issuu #6)
- change form field html style more like woocommerce
1.0.0 – 2019/12/07
- First release