Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wy4tt34rp/62bf863dabf16400b020508ba43b5934 to your computer and use it in GitHub Desktop.
Save wy4tt34rp/62bf863dabf16400b020508ba43b5934 to your computer and use it in GitHub Desktop.
Change SKU text label in woocommerce to Product Code
function translate_woocommerce($translation, $text, $domain) {
if ($domain == 'woocommerce') {
switch ($text) {
case 'SKU':
$translation = 'Product Code';
break;
case 'SKU:':
$translation = 'Product Code:';
break;
}
}
return $translation;
}
add_filter('gettext', 'translate_woocommerce', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment