Hi there!
I need to customize the contact form for a client.
The DatePicker should look like this: TT.MM.JJ
And instead of “true or false” in the Mail, “JA and nein” should be.
Where can I make these adjustments?
Thanks and regards
Luke
Hey Luke!
1. To change the date format:
https://kriesi.at/support/topic/date-picker-format/#post-137896
2. I believe these strings should be already translated, make sure your WordPress install is in German.
Regards,
Josue
Hey Josue,
i’m sure to have installed the German Version. Would you have another idea?
Thanks and regards,
Lukas
Hi Lukas,
Can you post the link to your website please?
Regards,
Josue
Hi Luke!
Could you specify where does these “true/false” strings appear? i couldn’t find them in the form.
Cheers!
Josue
Hi Josue!
My customer gets an e-mail from the contact form with “True” or “False” (checkboxes). Now he has asked me if i could change the true or false in german (Richtig und Falsch)…
Thanks and regards
Lukas
Hi Lukas,
Open /php/class-form-generator.phpand look for line 417:
if(empty($_POST[$id])) $_POST[$id] = "false";
Replace it by this:
empty($_POST[$id]) ? $_POST[$id] = "Nein" : $_POST[$id] = "Ja";
Regards,
Josue
Great, it works!
Thanks for the help and for the fantastic theme!
Regards Lukas