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 Modified
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 Modified
  2. Future booking can be enabled by commenting out the 'display: none !important':

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


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