Make checkout country dropdown readonly in Woocommerce
问题 I want country dropdown on woocommerce as readonly. I already set the default country to australia but I want them to be readonly. 回答1: The answer of Kashalo is correct… You can also use one of this multiple other ways: 1) For Checkout Billing country only: add_filter('woocommerce_checkout_fields', 'readdonly_billing_country_select_field'); function readdonly_billing_country_select_field( $fields ) { // Set billing and shipping country to AU WC()->customer->set_billing_country('AU'); // Make