Skip to content

Instantly share code, notes, and snippets.

@bolderelements
Last active November 6, 2020 13:42
Show Gist options
  • Save bolderelements/0c51079ea00c9181c10d7eb34eb0e53b to your computer and use it in GitHub Desktop.
Save bolderelements/0c51079ea00c9181c10d7eb34eb0e53b to your computer and use it in GitHub Desktop.
Remove WooCommerce Shipping Title
/*
* Removes the title from a shipping option.
* Best to be used when only one shipping option is returned.
*
* Requires WooCommerce 2.1+
*/
function remove_title_from_shipping_label( $full_label, $method ){
return str_replace( $method->get_label() . ': ', "", $full_label );
}
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_title_from_shipping_label', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment