How to blank all WooCommerce checkout fields by default except country?
问题 On my WooCommerce checkout page, I want the billing fields to be blank except for the billing country. I'm using this to make sure the checkout form is blank when it gets filled out: add_filter('woocommerce_checkout_get_value','__return_empty_string',10); However, I do want the billing country field to be filled out, and default to the US. So I've got this: add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' ); function change_default_checkout_country() { return