Hi,
Please use this, the below is an example of how to change multiple strings:
Make sure you put the exact text you want to change.
function swift_wc_translate_text($translated) {
$translated = str_ireplace('Choose an option', 'Your Replacment Text', $translated);
$translated = str_ireplace('Choose an option TWO', 'Your Replacment Text TWO', $translated);
$translated = str_ireplace('Original Text THREE', 'Your Replacment Text THREE', $translated);
return $translated;
}
add_filter('gettext', 'swift_wc_translate_text');
add_filter('ngettext', 'swift_wc_translate_text');
Thanks,
David.