Hello.
You have added somewhere in settings of your theme or in some CSS file, this customization:
.date_approved {
background-color:red!important;
color:white!important
}
.date_available {
background-color:#90ee90!important;
color:black!important
}
.block_hints .block_free,
.block_hints .block_time,
.block_hints .block_check_in_out div.check-in-div,
.block_hints .block_check_in_out div.check-out-div,
.datepick-inline .date_available,
.datepick-inline .timespartly.check_in_time div.check-in-div,
.datepick-inline .timespartly.check_out_time div.check-out-div {
background:none repeat scroll 0 0 #90ee90
}
You need to remove this CSS code, or at least replace it to this code, for ability to see selected dates:
.date_approved {
background-color:red!important;
color:white!important
}
.block_hints .block_free,
.block_hints .block_time,
.block_hints .block_check_in_out div.check-in-div,
.block_hints .block_check_in_out div.check-out-div,
.datepick-inline .date_available,
.datepick-inline .timespartly.check_in_time div.check-in-div,
.datepick-inline .timespartly.check_out_time div.check-out-div {
background:none repeat scroll 0 0 #90ee90
}
Also please recheck for any cache plugins, like “WP Super Cache”, “WP Fastest Cache” or “W3 Total Cache”. If you are using someone, please deactivate it or add the exception to the page with a booking form for do not cache this page(s).
Kind Regards.
-
This reply was modified 1 year, 12 months ago by
wpdevelop.