Hi I wantet du ask how i can change the mail text from the form home-moving
i get this one:
Home Moving
Location-From
vaihingen
Location-To
test
Name
test name
Email
ju@web.de
Phone
0001111
Date
04/04/2022
and i would like to change this one
4 replies · opened Feb 23, 2022
Hi I wantet du ask how i can change the mail text from the form home-moving
i get this one:
Home Moving
Location-From
vaihingen
Location-To
test
Name
test name
Email
ju@web.de
Phone
0001111
Date
04/04/2022
and i would like to change this one
And how can i change the language and format in the datepicker
Hello,
Simply change the subject and html_title according to your needs.
Please follow these instructions:
i. Create a New File in the js/components Folder with the name datepicker.de.js and then add the following code inside it:
[ch_pre type="js"]$.fn.datepicker.dates['de'] = {
days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
today: "Today",
clear: "Clear",
format: "mm/dd/yyyy",
titleFormat: "MM yyyy", /* Leverages same syntax as 'format' */
weekStart: 0
};[/ch_pre]
ii. Translate the texts above according to your needs in German.
iii. Add the following line of code in the HTML File just after the js/components/datepicker.js JS Linking at the bottom:
[ch_pre]<script src="js/components/datepicker.de.js"></script>[/ch_pre]
iv. Find the following code in the HTML File:
[ch_pre type="js"]$(function() {
$('.travel-date-group').datepicker({
autoclose: true,
startDate: "today"
});
});[/ch_pre]
and replace it with:
[ch_pre type="js"]$(function() {
$('.travel-date-group').datepicker({
autoclose: true,
startDate: "today",
language: 'de',
});
});[/ch_pre]
This should definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.
Thanks for your help!
i still dont get it to change the mesage after submiting the form at the moment the code under the form is:
Angebot anfordern
So where is the msg saved i get on my email.
I cant see the the ar_message imput for the message
Hello,
The above codes should work fine in changing the Email Texts. The Messages received in the Email are not saved and directly sent to the Email while submitting the Form. The Static Texts set to the Email can be found in the include/form.php File. Please provide us with a Live URL so that we can check out the exact issue and provide you with more accurate assistance on this. Thanks for your Patience.
Please check out this Guide: https://docs.semicolonweb.com/docs/forms/auto-responder/ to setup Auto-Responders.
Meanwhile, do let us know if we can help you with anything else or if you find any further issues with Canvas.
Have the same question, or something new?
Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.
Reply on the dashboard