Last active
June 25, 2018 13:27
-
-
Save bolderelements/91cd6c3625d6de1d34f7c4d03a7a454b to your computer and use it in GitHub Desktop.
Hide Free Shipping When Table Rate Option 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 free shipping options when the given shipping option is available to choose | |
* Code snippets should be added to the functions.php file of your child theme | |
* | |
* @return array | |
*/ | |
function hide_shipping_when_option_is_available( $rates, $package ) { | |
// set the desired option | |
$shipping_op = 'betrs_shipping:10-2'; | |
if( array_key_exists( $shipping_op, $rates ) ) { | |
foreach( $rates as $key => $option ) { | |
if( $option->method_id == 'free_shipping' ) | |
unset( $rates[ $key ] ); | |
} | |
} | |
return $rates; | |
} | |
add_filter( 'woocommerce_package_rates', 'hide_shipping_when_option_is_available', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment