I have the mulitdatespicker, and I need to disable ALL dates except those that are every 2 weeks from the "defaultDate".
So if the current day is set to thursday 6th May, I need to disable all days before it, then all the days up to Thurs 20th May (2 weeks from the 6th). Then disable 2 weeks again up to 3rd June... (2 weeks from the 20th) etc.
So the only dates selectable are every 2 weeks from the defaultDate.
jQuery('.multidatepicker').multiDatesPicker({
dateFormat: "d M yy",
defaultDate: '6 May 2021',
maxDate: 72,
minDate: new Date(),
addDisabledDates: ??? //Do I add something here?
});