WooCommerce: Pre-select and restrict to one state and city on checkout
问题 I'm setting up a store that only sells to one city. I'm trying to figure out how I can restrict the city option to a pre-filled field. I've already limited the country and using the following code in my functions.php : add_filter( 'default_checkout_country', 'change_default_checkout_country' ); add_filter( 'default_checkout_state', 'change_default_checkout_state' ); function change_default_checkout_country() { return 'PK'; // country code } function change_default_checkout_state() { return