I'm wondering how to modify the mysite.com/booking page.

This is for a Cat Boarding which only has individual boxes so I just need the arrival, departure date and the number of unit.

I want to hide the "group size" input and set 1 by default, but I can't figure out which file to modify.

Thanks

Comments

scalas89’s picture

Hello @thibaut51 - I think that you can simply set the default group size to 1 and hide the select from the page.
1- Set maximum group size to 1, you can do it from /admin/rooms/config/bookings tab: Rooms availability search settings.
2 -Hide the select list via Css:

.rooms-availability-search .rooms-group {
display: none;
}