spncrmoo of PS Devs
8/24/2016 - 12:26 PM

Removes the shipping label within woocommerce.

Removes the shipping label within woocommerce.

<?php

add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_shipping_label', 10, 2 );
  
function remove_shipping_label($label, $method) {
$new_label = preg_replace( '/^.+:/', '', $label );
return $new_label;
}

?>