Thank you.
I did try the hook but don’t know how to proceed.
In the database there is field name : Title.
I need to get the field value in the functionX.
In the template for thanks page :
echo $this->get_thanks_message();
$post_id = functionX($this);
In functions :
function functionX($post) {
$post_id = -1;
$title = XXXXX;
...
}
add_action('pdb-after_submit_signup', 'functionX');
Thank you, I’ll let you know what I do.
Notepad save encoding utf-8 and it’s fine.
😉
Ok I have been able to translate Field title, help text and values, Group title and description in French following your previous answers. Only Chinese characters are not displayed and question mark appears.
if ( $language_prefix == ‘fr_FR’ ){
$titles_array = array(‘print’=>’Imprimer’,’edit’=>’Mise a jour’);
What do I have to do ?