Hi
How can i change true and false in the contactformular into German?
Thanks for your help :)
rixi
Hey rixi,
Thank you for the inquiry.
You can use this filter in the functions.php file to replace the words true and false in the contact form message.
add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3);
function avf_form_message_mod_checkbox($message, $new_post, $form_params) {
$message = str_replace('true', 'Yes', $message);
$message = str_replace('false', 'No', $message);
return $message;
}
Replace the words “Yes” and “No’ with any strings or text.
Best regards,
Ismael