Hi Enfold,
i try to hide the privacy policy Text i put in the Backend (Message below template builder contact forms) in the Admin autoresponder EMail and normal Autoresponder?
thank you
Hey siteraum,
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 it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
Basilis
Hi, this solution is work to hide the long privacy policy message in the autoresponder E-Mail
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(‘COPY HERE THE WHOLE MESSAGE YOU WROTE UNDER Message below template builder contact forms ‘, ”, $message);
$message = str_replace(‘true’, ‘Ja’, $message);
return $message;
}
The result you get in the Autoresponder is only:
Datenschutzerklärung: Ja
(script idea from Ismael- thanks)