Skip to content

Instantly share code, notes, and snippets.

@webgurus
Last active August 29, 2015 14:05
Show Gist options
  • Save webgurus/33e0fee4694761ab56c5 to your computer and use it in GitHub Desktop.
Save webgurus/33e0fee4694761ab56c5 to your computer and use it in GitHub Desktop.
WooCommerce - hide standard shipping option when free is available
<?php
/**
* Hide Standard Shipping option when free shipping is available
*
* @param array $available_methods
*/
function hide_standard_shipping_when_free_is_available( $available_methods ) {
if( isset( $available_methods['free_shipping'] ) AND isset( $available_methods['flat_rate'] ) ) {
// remove standard shipping option
unset( $available_methods['flat_rate'] );
}
return $available_methods;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment