Skip to content

Instantly share code, notes, and snippets.

@jfarsen
Created August 9, 2017 01:41
Show Gist options
  • Save jfarsen/30e82ebab5ee370cc0f93098b33b95a8 to your computer and use it in GitHub Desktop.
Save jfarsen/30e82ebab5ee370cc0f93098b33b95a8 to your computer and use it in GitHub Desktop.
Define a default province at WooCommerce checkout
<?php
/**
* Manipulate default state and countries
*/
add_filter( 'default_checkout_state', 'change_default_checkout_state' );
function change_default_checkout_state() {
return 'QC'; // state code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment