Skip to content

Instantly share code, notes, and snippets.

@dannyconnolly
Created December 18, 2015 13:22
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dannyconnolly/da6f1a2d95dc826ccdcd to your computer and use it in GitHub Desktop.
Save dannyconnolly/da6f1a2d95dc826ccdcd 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);
@jolution
Copy link

jolution commented Dec 3, 2021

@ARJ-HADES Your error could also be due to write and / or access rights. Can you generally write something in and save in it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment