Please restore Bookings 1.12 partially booked view
-
I spent all day yesterday trying to reimplement a feature removed in Woocommerce bookings 1.13. Before 1.13, the booking calendar used to show a red triangle on days that were partially booked.
Support told me that it was removed because the development team felt it provided little value to the “user” as they would still have to click a day to see what times are still available for booking.
The “customer” is not the only “user” of a store. The store owner, is the primary user. As a store owner, that feature helped drive sales. First, it creates social proof. More than reviews, when a customer sees a product has lots of bookings, it tells them that product is popular.
Second, it creates a sense of urgency. When a customer sees fewer days available every time they come back, it pushes them to make their booking quickly, before their desired date and time is no longer available.
As it is, I tried to implement CSS code supplied by support.
.wc-bookings-date-picker .ui-datepicker td.partial_booked a:before {
content: “”;
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-top: 2.5em solid #c96259;
border-right: 2.5em solid transparent;
z-index: -10;
opacity: .75;
}Unfortunately, the CSS works on the Storefront theme, but does not work on my theme. I’ve tried: inserting the CSS into the customizer, creating a child of “frontend.css” and placing it in my child theme. I’ve also tried creating my own style sheet in the child folder and enqueueing it in the functions.php file.
NONE of these worked to override the CSS and restore the desired functionality. Last night I had to roll back to Bookings 1.12 2 to restore the functionality.
PLEASE BRING THIS BACK ASAP. IT IS HURTING MY SALES!!!!
The page I need help with: [log in to see the link]
- The topic ‘Please restore Bookings 1.12 partially booked view’ is closed to new replies.