Hi
I'm trying to change the 'first' and 'last' labels of the name field into japanese. I put this into my theme functions.php ....
<?php
add_filter("gform_name_first", "change_name_first", 10, 2);
function change_name_first($label, $form_id){
return "名";
}
?>
It's changing, but I'm not getting the correct character - the form shows two question marks. How can I get the Japanese showing?
Thanks
Mark