Last active
February 4, 2019 23:16
Revisions
-
bekarice revised this gist
Dec 3, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ //Remove (Free) label on cart page for "Shipping and Handling" if cost is $0 function wc_change_cart_shipping_free_label( $label ) { $label = str_replace( "(Free)", " ", $label ); -
bekarice created this gist
Oct 1, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ <?php //Remove (Free) label on cart page for "Shipping and Handling" if cost is $0 function wc_change_cart_shipping_free_label( $label ) { $label = str_replace( "(Free)", " ", $label ); return $label; } add_filter( 'woocommerce_cart_shipping_method_full_label' , 'wc_change_cart_shipping_free_label' );