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:

The stylesheet to be changed will be the same as the the associated room profile (see Chapter 1). 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:

...

  1. gldp-default {
    display:none !important
    }

...

  1. Image Added
  2. Future booking can be enabled by commenting the 'display: none ! important':
    .gldp-default {
    /*display:none !important */
    }

...

  1. Image Added