Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Rename the flat rate shipping label when the cost is $0
  2. function wc_ninja_change_flat_rate_label( $label, $method ) {
  3. if ( 'flat_rate' === $method->method_id && $method->cost == 0 ) {
  4. $label = "Free Shipping";
  5. }
  6.  
  7. return $label;
  8. }
  9. add_filter( 'woocommerce_cart_shipping_method_full_label', 'wc_ninja_change_flat_rate_label', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement