Editing Calendar To Disable Certain Dates
-
I am trying to edit the Calendar to disable All Fridays from the selection.
https://tuckerfamilydentistry.com/?page_id=27
The above link is the location of their form.
I have visited Dynarchs website and have found the following code:
Calendar.setup({
cont: “sample2”,
disabled: function(date) {
if (date.getDay() == 5) {
return true;
} else {
return false;
}
}
});But I am unsure if the version of the calendar being used in my FormMaker is the same version they have referenced for this code.
Can you confirm this is the write edit for the calendar?
If so, Where would this edit be made in order for it to achieve the right solution?
Thank you in advance.
- The topic ‘Editing Calendar To Disable Certain Dates’ is closed to new replies.