Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /**
  2. * Remove USPS Flat rate envelopes from the available options
  3. * Once added the customer will not see any rates for envelopes
  4. * Only Small, Medium, and Large Flat Rate boxes will be used
  5. */
  6. add_filter( 'usps_flat_rate_boxes', 'custom_usps_flat_rate_boxes' );
  7. function custom_usps_flat_rate_boxes( $flat_rate_boxes ) {
  8.  
  9. unset($flat_rate_boxes["d42"]);
  10.  
  11. return $flat_rate_boxes;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement