jQuery(document).ready(function($) {
// Initialize when the date field is focused
$(document).on('focus', '#ff_3_datetime', function() {
$(this).flatpickr({
minDate: "today",
dateFormat: "mm/dd/yyyy",
disable: [
{
from: "01-01-1970",
to: new Date().fp_incr(-1) // yesterday
}
]
});
});
});