• Resolved lazis002

    (@lazis002)


    I have a recipients form for my products which has a date field so customers can select a delivery date.

    Since the most recent update, this does not show in the cart, checkout or order details.

    I have made sure that the Hide fields in section is not active.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author acowebs

    (@acowebs)

    Could you please export the form and share it? We can test it from our end and figure out the issue

    Thread Starter lazis002

    (@lazis002)

    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 1 year, 2 months ago by lazis002.
    Plugin Author acowebs

    (@acowebs)

    Great!, Happy to know the issue has been resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WPCA Date not showing in cart / order details’ is closed to new replies.