Hello, sorry my english bad !
how and where can i translate (on Russian) mail template? contact form?
I need to change on the Russian – true and false words
Checkbox element in the letter writes – “true”, I want to change to – “да”
Hey rusrace!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_form_mail_field_values', 'avia_change_checkbox_return_values', 10, 4);
function avia_change_checkbox_return_values($value, $new_post, $form_elements, $form_params){
if($value == 'false') $value = 'No';
if($value == 'true') $value = 'да';
return $value;
}
You can also replace “No” with a custom value.
Best regards,
Peter
Hoi Dude!
big thanks ! all work!
Hi,
Great, glad I could help you :)
Best regards,
Dude