Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This is an example of enabling future booking in Astro room screen:
Image RemovedImage Added
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.

  1. 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:


    Code Block
    languagecss
    .gldp-default { 
    	display: none !important 
    }
    Image Removed


    Image Added
  2. Future booking can be enabled by commenting out the 'display: none !important':

    Code Block
    languagecss
    .gldp-default { 
    	/* display: none !important */
    }
    Image Removed 


  3. Tapping the date will now show the date selector.
    Image Added