Hallo ich verwende in meinem Kontaktformular eine Checkbox damit der User die Datenschutzbedingungen akzeptieren muss.
Diese Zeile wird auch in der Mail mitgeschickt inkl der Beschreibung :true. Kann ich das “true” übersetzen oder entfernen?
Hier das Mail Beispiel:
Name: Luis Gasser
E-Mail: privat(AT)cnh.at
Nachricht: Testanfrage
Hiermit stimme ich den Datenschutzbedingungen dieser Seite zu und bin damit einverstanden, dass meine Daten über dieses Formular versendet werden.
: true
Hey Luisgasser,
Can you please post for us in English, s owe can review it better?
Best regards,
Basilis
Hello I use a checkbox in my contact form so that the user has to accept the privacy policy.
This line is also sent in the mail including the description: true. Can I translate or remove the word “true”?
Here is the mail example:
Name: Luis Gasser
E-Mail: private (AT) cnh.at
Message: Test request
I hereby agree to the privacy policy of this site and I agree that my data will be sent via this form.
: true
Hi,
Thank you for the info. Yes, that is possible. Add this filter in the functions.php file.
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;
}
It will replace the value with “yes” or “no”. Adjust the value as needed.
Best regards,
Ismael