-
AuthorPosts
-
January 31, 2023 at 10:40 am #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!
February 1, 2023 at 4:25 am #1396134Hey 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,
IsmaelFebruary 6, 2023 at 4:45 pm #1396856Hey,
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,
maxFebruary 7, 2023 at 3:50 am #1396906Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.