Skip to content

Instantly share code, notes, and snippets.

@woogist
Created November 26, 2014 09:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save woogist/b81742981ca6297b03e6 to your computer and use it in GitHub Desktop.
Save woogist/b81742981ca6297b03e6 to your computer and use it in GitHub Desktop.
Sell only in specific states/regions/provinces
<?php
/**
* Sell only in California
*/
function wc_sell_only_states( $states ) {
$states['US'] = array(
'CA' => __( 'California', 'woocommerce' ),
);
return $states;
}
add_filter( 'woocommerce_states', 'wc_sell_only_states' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment