Created
October 13, 2014 16:17
-
-
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
This file contains 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('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