Hi
follow given instruction
go to in plugin directory >> appointment-calendar-shortcode.php.
open appointment-calendar-shortcode.php go to line number 352 or search comment //Modal Form Works – show frist modal replace under js function code jQuery(‘#addappointment’).click(function(){} with bellow given code
var d = new Date();
d.setDate(d.getDate() +1);
var todaydate = jQuery.fullCalendar.formatDate(d,’dd-MM-yyyy’);
jQuery(‘#appdate’).val(todaydate);
jQuery(‘#AppFirstModal’).show();
go to line number 572 or search <!–PHP Date-picker –>
on line number 572 replace this line with new line code
“replace this
$startCalendarFrom = date(“Y-m-d”, strtotime(“-1 day”, strtotime($curr_date)));
“with this “
$startCalendarFrom = date(“Y-m-d”, strtotime(“-0 day”, strtotime($curr_date)));
let me know did this work
Thanks
Abhishek