Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28544

    I am using the date picker on the contact form for this page: http://bostonsweddingentertainment.com/contact-us/

    How can I change the date format to mm/dd/yy instead of dd/mm/yy?

    #137896

    Hey,

    Add this in the functions.php file:

    add_filter('avf_datepicker_dateformat', 'avia_change_dateformat_cf');
    add_filter('avf_datepicker_date_placeholder', 'avia_change_placeholder_cf');
    
    function avia_change_dateformat_cf() { return  'dd / mm / yy'; }
    function  avia_change_placeholder_cf() { return  'DD / MM / YY'; }

    Replace the format.

    Cheers,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Date Picker format’ is closed to new replies.