Another question, how could I fix the width of the frontend booking table?
Thank you!
Hi,
Grouping two values into one cell will require some code additions (it cannot be setup from the shortcode).
For fixing the width of the frontend booking list use the following style:
.cpappbtable { width:200px !important; }
You may need to fix also some of the columns, for example use the following to fix a specific column (column #2 in the sample):
.cpappbcol2 { max-width: 60px;overflow: hidden; }
Please check also the following general info:
https://apphourbooking.dwbooster.com/blog/2018/12/26/grouped-frontend-lists/
Thank you!