Landing Page: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:How to]]
[[Category:How to]]
[[Category:Booking_Page]]
[[Category:Booking_Page]]
[[Category:Booking_Engine]]
Required skills: php, html, css
Required skills: php, html, css
  ''This page explains to how to create a custom landing page''
  ''This page explains to how to create a custom landing page''
You can specify a landing page after a booking is made at SETTINGS->BOOKING PAGE->PAGE DESIGN->BEHAVIOUR "Booking Return URL
You can specify a landing page after a booking is made at SETTINGS-> BOOKING ENGINE -> BOOKING PAGE->BEHAVIOUR "Booking Return URL
The guest will be redirected to your page after they book.
The guest will be redirected to your page after they book.
We will include information about the booking as parameters added to your Url
We will include information about the booking as parameters added to your Url
Line 10: Line 11:
The following PHP test script will display the raw data.  
The following PHP test script will display the raw data.  


Use this as a starting point to create your own design. It may also be possible to use this method to forward the guest on to your own payment gateway to collect a deposit.
Use this as a starting point to create your own design.  
 
  <nowiki><?php
  <nowiki><?php
  echo "<br>bookid=".$_GET["bookid"];
  echo "<br>bookid=".$_GET["bookid"];