Created
February 12, 2015 03:22
-
-
Save bryceadams/7016e5e80eb45c93c54b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_package_rates', 'wcsupport_no_usps_us', 10, 2 ); | |
function wcsupport_no_usps_us( $rates, $package ) { | |
if ( WC()->customer->shipping_country == 'US' ) { | |
foreach( $rates as $key => $rate ) { | |
if (strpos($key,'usps') !== false) { | |
unset( $rates[$key] ); | |
} | |
} | |
} | |
return $rates; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment