This is an example of enabling future booking in Astro room screen:
The stylesheet to be changed will be the same as theĀ associated room profile. Reference to the diagram above will indicate which class or ID needs to be altered to achieve the desired effect.
- Locate the 'gldp-default' class in the stylesheet content. If '.gldp-default' is not found, then one can be created at the end of the existing content:
.gldp-default { display: none !important }
Future booking can be enabled by commenting out the 'display: none !important':
.gldp-default { /* display: none !important */ }
Tapping the date will now show the date selector.