WC City Select Plugin WordPress, Download, Install

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

WC City Select Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/wc-city-select/

How to Install WC City Select Plugin, Manually

  1. Upload to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. 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; }

Video

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Add a Comment

Your email address will not be published. Required fields are marked *