[ad_1]
Could you please export the form and share it? We can test it from our end and figure out the issue
I think its fixed.
I previously had 2 date fields that would change based on the time of day. If it was past midday, only the date filed that had tomorrow as the min date would show.
This update broke that so I have replaced with one date field and added in custom javascript for minDate:
var today = new Date();
curTime = parseInt(today.getHours() + "" + ("0" + today.getMinutes()).substr(-2) + "" + ("0" + today.getSeconds()).substr(-2));
if (curTime > 115900)
{
today.setDate(today.getDate() + 1);
return today;
}
else
{
return today;
}- This reply was modified 3 hours, 40 minutes ago by lazis002.
Great!, Happy to know the issue has been resolved.
