borkolivic

Unset flat rate shipping if free is available

Nov 9th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'woocommerce_package_rates', 'hide_frate_shipping_when_free_is_available', 10, 2 );
  2.  
  3. function hide_frate_shipping_when_free_is_available( $rates, $package ) {
  4.     if ( isset( $rates['free_shipping'] ) ) {
  5.         unset( $rates['flat_rate'] );
  6.     }
  7.     return $rates;
  8. }
Add Comment
Please, Sign In to add comment