Skip to content

Instantly share code, notes, and snippets.

@DanielSantoro
Created May 12, 2015 19:17
Show Gist options
  • Select an option

  • Save DanielSantoro/6f35d76717a8f23d30b3 to your computer and use it in GitHub Desktop.

Select an option

Save DanielSantoro/6f35d76717a8f23d30b3 to your computer and use it in GitHub Desktop.
Sell only to CA - Single Shipping Class
<?php
/**
* Looking to make a shipping class only eligable for a specific state
*/
add_filter( 'woocommerce_states', 'wc_sell_only_states' );
function wc_sell_only_states( $discountstates ) {
$discountstates['US'] = array(
'CA' => __( 'California', 'woocommerce' ),
);
return $discountstates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment