Skip to content

Instantly share code, notes, and snippets.

@ChromeOrange
Created October 13, 2014 16:17
Show Gist options
  • Save ChromeOrange/79244ff62e6bb105c42c to your computer and use it in GitHub Desktop.
Save ChromeOrange/79244ff62e6bb105c42c to your computer and use it in GitHub Desktop.
Unset First Class shipping methods from the USPS return in WooCommerce - add the required functions to your theme functions.php file
add_filter('usps_disable_first_class_rate_first-class-mail-parcel', '__return_true');
add_filter('usps_disable_first_class_rate_first-class-mail-large-envelope', '__return_true');
add_filter('usps_disable_first_class_rate_first-class-mail-stamped-letter', '__return_true');
add_filter('usps_disable_first_class_rate_first-class-mail-postcards', '__return_true');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment