Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #850607

    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?

    #851231

    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

    #851459
    This reply has been marked as private.
    #851495

    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

    #851667
    This reply has been marked as private.
    #852422

    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

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