Versions Compared

Key

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

...

Code Block
<input type="hidden" name="arrival" value="2020-08-20">
<input type="hidden" name="departure" value="2020-08-21">

The above HTML creates hidden date fields. The person who created your website should build their own javascript if calendar fields are required.

Info

Please note The Booking Engine does support input by date pickers. However, we do not support technical questions on the date picker as this is not part of the standard Booking Engine button.

The person who created your website should have sufficient knowledge to place a date picker without our assistance. We recommend using the Booking Engine button without a date picker if your website manager is unable to implement the date picker.

Number of nights

Number of nights can be added. Both dates must be YYYY-mm-dd format.

Code Block
<input type="hidden" name="nights" value="2">

Info

Please note When arrivaldeperature and nights are present, arrival and departure will overrule the number of nights.

Number of persons

Number of persons can be added.

Code Block
<input type="hidden" name="persons" value="2">

Google Analytics

We currently support the _ga variable, no other Google Analytics variables. Cross domain tracking is enabled. Simply add this script to your page. Make sure Google Analytics is loaded before.

...

This will attach the Google variable to the URL . To the URL like this: ?_ga={code}

Other variables

All other variables will be added as key/value pairs as a query string

Code Block
languagehtml
<input type="hidden" name="key" value="value">

This will attach the variable “key“ to the URL like this: ?key=value

Multiple hotels

See Chain Engine Button.

...