
Questions
How can I center the calendar into the page?
I'm not receiving the emails with the appointment data.
How can I cancel/delete an appointment to make its time slot available again?
How can I change the calendar's width and height?
Can I put an "acknowledgment / thank you message" after submitting an appointment?
Answers
How can I center the calendar into the page?
For centering the calendar open the CSS file "TDE_AppCalendar\all-css.css" in any text editor and add these CSS rules into that file:
.appContainer{text-align:center;}
.appContainer2{margin-left:auto;margin-right:auto;width:200px}
After that be sure to refresh the page or clear your browser cache to be sure that the browser is loading the updated CCS styles file.
I'm not receiving the emails with the appointment data.
Please check if after the payment completed at Paypal the appointment appears registered in the calendar (some time slot unavailable):
How can I cancel/delete an appointment to make its time slot available again?
How can I change the calendar's width and height?
You can specify the size of the calendar's cells, that way the complete calendar width and height can be controlled.
Open the file "appointment-booking-calendar\TDE_AppCalendar\all-css.css" and about line #139 modify the "padding" applied to the cells:
.yui-calendar td.calcell {Can I put an "acknowledgment / thank you message" after submitting an appointment?
How do I change the background color of the selected date?
Open the file "wp-content/plugins/appointment-booking-calendar/TDE_AppCalendar/all-css.css" ... find this css rule:
.yui-calendar td.calcell.reserveddate { background-color:#B6EA59; }
...and replace the background color that appears there.