Be able to hide the calendar in the direct booking site
Be able to hide the calendar from the direct booking site to be private. Have the guests check the availability by putting the dates on the search bar only.
1
vote
Amy
shared this idea
This can be applied with custom CSS as suggested by Keith :)
-
Keith commented
I'm not clear on what you want or why you want it, but I *think* you mean to remove the calendar tab from the property detail page. this will leave a gap where the "calendar" tab currently is so it can't be clicked on.
I *think* you can hide it by doing this:
Under "whitelabel" tab, in the Header_HTML field. add the following:
<style>
a[href="#calendar"] {
display:none !important;
}
</style>