Skip to content

Instantly share code, notes, and snippets.

@wsenjer
Last active August 1, 2019 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsenjer/1a7b9eac9e8ab374015aff8560006694 to your computer and use it in GitHub Desktop.
Save wsenjer/1a7b9eac9e8ab374015aff8560006694 to your computer and use it in GitHub Desktop.
Hide Express Post
<?php
add_action( 'woocommerce_package_rates','hide_express_post_shipping_option' );
function hide_express_post_shipping_option( $rates ) {
$method = 'AUS_PARCEL_EXPRESS';
if(isset($rates[$method])){
unset($rates[$method]);
}
return $rates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment