WC City Select

City Select for WooCommerce. Show a dropdown select as the cities input.

Author:8manos (profile at wordpress.org)
WordPress version required:4.0
WordPress version tested:6.5
Plugin version:1.0.8
Added to WordPress repository:11-11-2015
Last updated:30-03-2024
Rating, %:98
Rated by:12
Plugin URI:https://wordpress.org/plugins/wc-city-select/
Total downloads:28 701
Active installs:3 000+
plugin download
Click to start download

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.

How to add cities

A list of cities has to be loaded in the functions.php file (the plugin already includes cities from some countries).

Use wc_city_select_cities filter to load your cities. This is done similarly to adding states/provinces.
It should be added on your functions.php or a custom plugin.

add_filter( 'wc_city_select_cities', 'my_cities' );
/**
 * Replace XX with the country code. Instead of YYY, ZZZ use actual  state codes.
 */
function my_cities( $cities ) {
    $cities['XX'] = array(
        'YYY' => array(
            'City ',
            'Another City'
        ),
        'ZZZ' => array(
            'City 3',
            'City 4'
        )
    );
    return $cities;
}

It’s also possible to use a list of cities without grouping them by state:

add_filter( 'wc_city_select_cities', 'my_cities' );
function my_cities( $cities ) {
    $cities['XX'] = array(
        'City ',
        'Another City'
    );
    return $cities;
}

Github

Source code and contributions at github


ChangeLog