hi,
i have a german form with checking privacy policy.
the email is send with english “true”.
we need german “wahr!
where can i find the translation.
in the language file there it is not.
Hey Christian,
Thank you for the inquiry.
We could use this filter in the functions.php file to adjust the email message and replace the text “true” with “wahr”.
function avf_form_message_mod_checkbox($message, $new_post, $form_params) {
$message = str_replace('true', 'wahr', $message);
return $message;
}
add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3);
Best regards,
Ismael
thanks. i will try.
Hi,
Alright. We will keep the thread open. Please let us know if the filter above helps.
Best regards,
Ismael
it helps.