Viewing 1 replies (of 1 total)
  • Plugin Author Jeroen Sormani

    (@sormano)

    Hi,

    Yes its possible to delete the ‘(free)’ from the label.

    Paste the following code in your functions.php of your theme.

    function remove_free_from_shipping_label( $label ) {
    	return str_replace( ' (' . __( 'Free', 'woocommerce' ) . ')', '', $label );
    }
    add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_free_from_shipping_label' );

    Jeroen

Viewing 1 replies (of 1 total)
  • The topic ‘Is there a way to hide the label (Free)?’ is closed to new replies.