Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1393962

    Hi
    How can i change true and false in the contactformular into German?

    Thanks for your help :)
    rixi

    #1394322

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.