Created
December 18, 2015 13:22
-
-
Save dannyconnolly/da6f1a2d95dc826ccdcd to your computer and use it in GitHub Desktop.
Change SKU text label in woocommerce to Product Code
This file contains 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 characters
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); |
@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
thank you bro