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?
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