Skip to content

Instantly share code, notes, and snippets.

@WooForce
Last active March 31, 2016 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WooForce/be2e9b57411c2600b380 to your computer and use it in GitHub Desktop.
Save WooForce/be2e9b57411c2600b380 to your computer and use it in GitHub Desktop.
WooCommerce: Hide the undesired service for the required Zip Codes
add_filter('woocommerce_package_rates', 'wf_remove_shipping_options_for_particular_zip_codes', 10, 2);
function wf_remove_shipping_options_for_particular_zip_codes($rates, $package)
{
global $woocommerce;
$excluded_zip_array = array(
'93999'
);
if (in_array($woocommerce->customer->get_shipping_postcode() , $excluded_zip_array)) {
unset($rates['wf_fedex_woocommerce_shipping:FEDEX_GROUND']);
}
return $rates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment