Hello, in a contact form I have inserted a “custom html” element in which there is some read-only text (privacy statement and consent to the acquisition of personal data), which I would like to be reported in the email I receive when people send me the form.
Is there a way to do this?
Hey dannat,
Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
Basilis
Hi danat,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Hi,
The “description” field or element is not going to be included in the email. The purpose of that field is to describe a certain contact form field. If you need to append other content to the email text, use the following filter.
function avf_form_autorespondermessage_mod($message) {
$message .= 'ADD SOME TEXT HERE';
return $message;
}
add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);
Best regards,
Ismael