Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created August 27, 2015 09:02
Show Gist options
  • Save mikejolley/239a298e43ea7788425d to your computer and use it in GitHub Desktop.
Save mikejolley/239a298e43ea7788425d to your computer and use it in GitHub Desktop.
<?php
/**
* Hide Free Shipping for some states
*/
add_filter( 'woocommerce_package_rates', 'hide_all_shipping_when_free_is_available' , 10, 2 );
function hide_all_shipping_when_free_is_available( $rates, $package ) {
$excluded_states = array( 'AK', 'HI', 'GU', 'PR' );
if( isset( $rates['free_shipping'] ) AND in_array( WC()->customer->get_shipping_state(), $excluded_states ) ) {
unset( $rates['free_shipping'] );
}
return $rates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment