Change subscribe text
-
For those of you struggling to solve what should be a very simple setting in the plugin, just add this function your functions.php or add via WPCode or other snippets plugin:
/--------- Translate Strings ------------------------/
function filter_translations($translation, $text, $domain) {
if ($domain == 'mailchimp-for-woocommerce') {
switch ($text) {
case 'Subscribe to our newsletter':
$translation = 'Your new newsletter text';
break;
}
}
return $translation;
}
add_filter('gettext', 'filter_translations', 20, 3);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.