First of all: fantastic feature! After searching the web for hours I was glad to find (almost) exactly what I need. Except for the following: I need to change the dropdown menu for the date. Required are dates in the future. I tried to adjust the form.php file where the php-code is inserted - without success. Also I would like to put another date format (TT.MM.JJJJ) and the according labels in the form as the website is in German. I would be very glad if you could help me with that.
Answer:
You need to change 2 things. One is to display the date in German format TT.MM.JJJJ; The other is to change the year dropdown to the future years.
The following code is from your attached php form file. You can change the the following code :
The date("Y") means current year which is 2010, the date("Y")+10 means the next 10 years which is 2021. When the next year 2012 comes, the drop down options will be 2012 to 2022.