Hi Markus,
Ajit posted a solution in another support thread and it worked for me. Hopefully it will for you too. See below.
Cheers
Minty
Hi Ajit,
Thanks for the quick reply- I’m sorry to be slow myself, but I didn’t get a notification about your post!
That *** worked ***. I copied your text above, and now I have a date format that works for NZ. Many thanks!
—–
code that is working in “cf7-advanced-datepicker/js/custom-script.js” to give day/month/year formatted date:
jQuery(document).ready(function($) {
$('.cf7-adv-datepicker').datepicker({
dateFormat: 'dd-mm-yy',
autoclose: true,
showAnim: setting.effect,
changeMonth: setting.monyearmenu,
changeYear: setting.monyearmenu,
showWeek: setting.showWeek,
minDate: setting.date,
});
//verion 1.0 fail-safe
$('#cf7-adv-datepicker').datepicker({
dateFormat: 'dd-mm-yy',
autoclose: true,
showAnim: setting.effect,
changeMonth: setting.monyearmenu,
changeYear: setting.monyearmenu,
showWeek: setting.showWeek,
minDate: setting.date,
});