For some reason this code that was previously on this form does not work, does anyone have nay ideas?
Thanks,
Smokingjacket
function x_translate_text ( $translated_text, $text, $domain ) {
$translation = array (
‘Apply Coupon’ => ‘Your new text’
);
if( isset( $translation[$text] ) ) {
return $translation[$text];
}
return $translated_text;
}