Add dropdown list of cities in Woocommerce checkout page
问题 I want to add specific cities list in dropdown in checkout page of Woocommerce. Any best solution to add a dropdown of specific cities. I want to add dropdown on this website http://www.pkbrand.com 回答1: It can be done using a custom function hooked in woocommerce_checkout_fields action hook, where you will define in an array your desired cities: // Change "city" checkout billing and shipping fields to a dropdown add_filter( 'woocommerce_checkout_fields' , 'override_checkout_city_fields' );