Last active
April 30, 2019 19:40
-
-
Save ChromeOrange/6063973 to your computer and use it in GitHub Desktop.
Remove all shipping options except Free Shipping if Free Shipping is available.
This file contains hidden or 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
// Hide ALL shipping options when free shipping is available | |
add_filter( 'woocommerce_package_rates', 'hide_all_shipping_when_free_is_available' , 10, 1 ); | |
/** | |
* Hide ALL Shipping option when free shipping is available | |
* | |
* @param array $available_methods | |
*/ | |
function hide_all_shipping_when_free_is_available( $available_methods ) { | |
if( isset( $available_methods['free_shipping'] ) ) : | |
foreach ( $available_methods as $available_method ) { | |
$available_method = get_object_vars( $available_method ); | |
if ( $available_method['id'] != 'free_shipping' ) : | |
unset( $available_methods[$available_method['id']] ); | |
endif; | |
} | |
endif; | |
return $available_methods; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment