Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1435851

    Dear Team,
    I use the enfold contact form.
    If I deliver a confirmation mail to the customer, I can enter a free text. But underneath the field entries of the customer paper appear like:

    Deine Nachricht:
    Vorname und Name: test
    Organisation / Firma: test
    E-Mail: (Email address hidden if logged out)
    Optional: Ihre Nachricht:
    new
    Ich stimme der Speicherung Daten zu, um eine Bestätigung zu erhalten.: true.

    2 Questions:
    I want to change “Deine Nachricht” into “Ihre Angaben”
    And I want to change true” in “Ja” or, even better, to delete this sentence re. GDPR confirmation in total

    -> How Do I do this?

    Thx a lot, Tilman

    #1436161

    Hey Tilman,
    Thanks for your patience, do you mean that you want to add the text “Ich stimme der Speicherung Daten zu, um eine Bestätigung zu erhalten.” to the autoresponder message?
    Have you tried adding it to the Autorespond Text After Form Labels field:
    Enfold_Support_4904.jpeg
    The easiest way to change “Deine Nachricht” into “Ihre Angaben” on the front end is with javascript, please link to your page so we can examine.

    Best regards,
    Mike

    #1436167

    Hi Mike,
    No, i want to exlude this Confirmation Message plus the value „true“ in the autoresponder Mail..

    The url is https://www.eth-solutions.de/kompetenzforum/

    Thx again, Tilman

    #1436174

    Hi,
    Now that I have seen your contact form I understand better, you can create a custom response and remove the default info, for example try this in your child theme functions.php:

    add_filter("avf_contact_form_autoresponder_mail", function($mail_array, $new_post, $form_params, $class) { 
         $mail_array["Message"] = "Hello " . $new_post["1_1"] . "!\n" . " your message " . $new_post["4_1"] . " has been recived ";
    
         return $mail_array;
    }, 10, 4);
    

    $new_post[“1_1”] is your name field
    $new_post[“4_1”] is your message field, change the language to suit.
    I don’t see Deine Nachricht on your contact form so maybe you meant inside of your autoresponder message, the above code will not show this now.

    Best regards,
    Mike

    #1436178

    Hi Mike,
    thx. To Illustrate: this is how the autorresponder Looks currently:

    Guten Tag Tag liebe/r Absender/In,

    vielen Dank für Ihre Anmeldung. Sie sind jetzt als Teilnehmer/in des “Kompetenzforum Gründach und PV” registriert.

    Datum / Uhrzeit: 06.05.2024, von 11:30 bis 17:00 Uhr

    Ort: Deutsches Elektronen-Synchrotron DESY

    Gebäude: FLASH-Experimentierhalle (28c)

    Adresse: Notkestraße 85, 22607 Hamburg

    Wir wünsche Ihnen eine interessante Veranstaltung und gute Gespräche.

    Mit besten Grüßen

    Ihr ETH Team

    __________________________________________________

    Ihre Angaben:

    Deine Nachricht:

    Vorname und Name: sdfd
    Organisation / Firma: fds
    E-Mail: (Email address hidden if logged out)

    Optional: Ihre Nachricht:
    öolikutjzrhtegf

    Ich stimme der Speicherung Daten zu, um eine Bestätigung zu erhalten.: true

    #1436182

    Hi,
    Ok try the code above and see what your results are then.

    Best regards,
    Mike

    #1436301

    hi Mike,
    it did not work. So in this case I simply changed the form w/o consent

    thx again & best regards Tilman

    #1436315

    Hi,
    Ok, glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘autoresponder contact form edits’ is closed to new replies.