Change Woo Wording

 Add to functions.php file of active theme


// change shipping text to "Draw Fee"
 
add_filter('gettext', 'translate_reply');
add_filter('ngettext', 'translate_reply');
  
function translate_reply($translated) {
$translated = str_ireplace('Shipping', 'Draw Fee', $translated);
return $translated;
}

 

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article