Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1006890

    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

    #1007666

    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

    #1020596

    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)

    #1021445

    Hi,

    Glad that you found the solution. Let us know if you need anything else. :)

    Best regards,
    Ismael

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