Tagged: datepicker, enfold
Hello, is it possible to make the datepicker to select a range? Let’s say from the first of July 2015 to 13 September 2015 ?
Best regards,
tobee
Hi tobee_hh!
Open up /enfold/config-template-builder/avia-template-builder/assets/js/avia-modal.js and around line 418 you should see this.
minDate: -0,
Change it to this.
minDate: (new Date(2009, 1, 26)),
maxDate: (new Date(2020, 2, 26)),
And play around with the dates.
Regards,
Elliott