Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #389609

    hi there,

    where can i change the text “Ihre Nachricht” (Your Message) in the response-mail from the contact form?

    Text i can set:
    “Vielen Dank für Ihre Buchung. Nachfolgend Ihre Bestelldaten:”

    Text i want to change
    “Ihre Nachricht: ”

    Results from the contact form:
    “Name: Volmering
    Vorname: Ramon
    E-Mail: xxxxxx
    Telefon: xxxxx”

    #390524

    Hey volmering!

    Could you please link to the site in question? Also, are you using a contact form plugin?

    Cheers!
    Rikard

    #390814
    This reply has been marked as private.
    #391373

    Hi!

    Thank you for the update.

    You can add this on functions.php to change the autoresponder heading:

    function avf_form_autorespondermessage_mod($message) {
            $message .= "<br/><br/><br/><strong>".__('CHANGET THIS LINE:','avia_framework')." </strong><br/><br/>";
    	return $message;
    }
    add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);

    Edit framework > php > contact-form-generator.php, look for this code:

    wp_mail($from, $this->form_params['autoresponder_subject'], $message, $header);
    

    Replace it with:

    wp_mail($from, 'CUSTOM SUBJECT HERE', $message, $header);
    

    I haven’t tested this myself so please let us know if it works.

    Regards,
    Ismael

    #391941
    This reply has been marked as private.
    #392414

    Hey!

    Change Ismael’s first code to this:

    function avf_form_autorespondermessage_mod($message) {
            $message = "<br/><br/><br/><strong>".__('CHANGET THIS LINE:','avia_framework')." </strong><br/><br/>";
    	return $message;
    }
    add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);

    Cheers!
    Josue

    #392437
    #392439
    #392445

    Ok, let’s try another method:
    1. Install and activate this plugin – https://wordpress.org/plugins/codestyling-localization/
    2. Go to Tools > Localisation > Theme > Enfold and click “Modify” to edit the German translation
    3. Look for the “Ihre Nachricht:” string and change it – http://screencast.com/t/DRFOn6a67Oq
    4. Click this button – http://screencast.com/t/5pcPOMlF0KJ

    Regards,
    Josue

    #542449

    thx, perfect can be closed

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Change Text Auto Response Contactform’ is closed to new replies.