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

    Hallo!

    Wie kann ich die Anzeige bei gesendeter Nachricht beim Kontaktformular bearbeiten?

    Ich wollte folgende Formatierung einfügen und habe eine Fehlermeldung bekommen:

    <h3 style=”text-align:center”>Danke für dein Interesse an der Wertegemeinschaft!</h3>

    <h3 style=”text-align:center”>Wir haben deine Anfrage erhalten und melden uns bald persönlich. Als Bestätigung bekommst du eine automatische Mail.</h3>

    Zweite Frage:

    Die E-Mails, die von Kontaktformular versendet werden haben immer einen doppelten Zeilenabstand. Woran kann das liegen?

    Danke!

    #1396134

    Hey MaxBlank,

    Thank you for the inquiry.

    We don’t recommend using html tags in those fields because it could break the layout of the page or cause issues with the builder content. If you want to remove the line breaks, please add this code in the functions.php file.

    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(["\r", "\n"], "", $message);
        return $message;
    }
    

    Best regards,
    Ismael

    #1396856

    Hey,

    verstehe ich richtig, das, dass die Formatierung des Textes, der nach dem Abschicken des Formulars erscheint nicht möglich ist?

    Bezüglich dem zweiten Teil der Anfrage:
    Wo kann ich die functions.php Datei des Child-Theme bearbeiten?
    Ich habe zwar ein aktives Child-Theme, aber die Option Apperance>Editor ist im Menü nicht sichtbar. Wenn ich versuche die Datei im FTP Verzeichnis zu finden, dann sehe ich dort auch unter wp-content/themes/ keinen Ordner zum Child-Theme.

    Liebe Grüße,
    max

    #1396906

    Hi,

    Yes, unfortunately, you cannot create an email template without using a plugin or a platform such as Mailchimp.

    If you haven’t installed a child theme yet, you can directly add the code in parent theme’s functions.php file but it will be removed when you update the theme. What you can do instead is install a plugin that allows you to insert PHP snippets in the site without editing the theme files.

    // https://wordpress.org/plugins/insert-php-code-snippet/

    If you want to install a child theme instead, please check the documentation below.

    // https://kriesi.at/documentation/enfold/child-theme/

    Please make sure to create a site backup before attempting to activate the child theme.

    Best regards,
    Ismael

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