Hello,
I would like to change the wording on the coupon section of the site. Rather than it saying ‘Coupon Code’ in the field and ‘Apply Coupon’ as a button, I would like them to say ‘To The Trade Code’ and ‘Apply’
I tried this code suggested to another user but I couldn’t get it to work.
I hope you can help.
Thanks,
Kathy
****************************************
<?php
function sf_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘Coupon code’ :
$translated_text = __( ‘YOUR TEXT’, $domain );//Change your text
break;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘sf_text_strings’, 20, 3 );
?>