Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created April 11, 2016 12:11
Show Gist options
  • Save SirDarcanos/d297db06c39a9531e408ad8a6fde44ec to your computer and use it in GitHub Desktop.
Save SirDarcanos/d297db06c39a9531e408ad8a6fde44ec to your computer and use it in GitHub Desktop.
/**
* Sell only in California
*/
function wc_sell_only_states( $states ) {
$states['US'] = array(
'CA' => __( 'California', 'woocommerce' ),
'TX' => __( 'Texas', '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