Difference between revisions of "Customise Booking Page"

From Beds24 Wiki
Jump to navigation Jump to search
Line 126: Line 126:
 
/*code for a shadow arround your booking page*/
 
/*code for a shadow arround your booking page*/
  
<nowiki>#</nowiki>bookingpage {
+
m<nowiki>#</nowiki>bookingpage {
 
+
-webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
-webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
+
-moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
 
+
box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
+
box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38);
 
+
margin-bottom: 20px;
box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
+
}
 
 
box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38);
 
 
 
margin-bottom: 20px;
 
}
 
  
 
== Booking Page with Rounded Corners ==
 
== Booking Page with Rounded Corners ==
Line 143: Line 138:
  
 
/*code for rounded corners*/
 
/*code for rounded corners*/
<nowiki>#</nowiki>bookingpage {
+
<nowiki>#</nowiki>bookingpage {
 
+
border-radius: 7px;
border-radius: 7px;
+
-webkit-border-radius: 7px;
 
+
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
+
}
 
 
-moz-border-radius: 7px;
 
}
 

Revision as of 12:21, 22 January 2015

This page explains how to customise the booking page
  • Page Content - You can choose to display either a Room Availability Calendar or define a number of Price Columns.


Example.jpg

  • Design - Customise Design, Colours and fonts

SETTINGS -> BOOKING PAGE -> PAGE DESIGN

Ic video.gif [Show Video]'

Bookingpage1.png


  • Offer multiple languages (1) SETTINGS -> ACCOUNT -> LANGUAGES


  • Add a custom top (2) (eg. for your logo) and/or bottom (3) (eg. for contact info, directions, link to your terms and conditions) / SETTINGS -> BOOKING PAGE -> PAGE DESIGN

Ic video.gif [Show Video]'



  • Add pictures and information for rooms (5) in SETTINGS -> BOOKING PAGE -> ROOMS

Upload and setting (size, responsive behaviour) in SETTINGS -> BOOKING PAGE -> PICTURES

Ic video.gif [Show Video]'


  • Set different prices or packages for a room (5) in SETTINGS -> BOOKING PAGE -> ROOMS -> OFFER 2 (you can display up to four different offers)

Bookingpage.png


  • Customise Information your guest enters when booking / SETTINGS -> PROPERTIES -> BOOKING QUESTIONS
  • Customise Confirmation Messages / SETTINGS -> PROPERTIES -> CONFIRMATION MESSAGES
  • Order in which rooms appear on your booking page / SETTINGS-> ROOMS -> SETUP -> "Availabitlity" and set the Sell Priority for each room.


There is contextual help with each setting to assist you with the setup.

1 Further and Advances Options

2 Change Default Text

1. You can exchange any of the default text on the booking page in SETTINGS -> BOOKING PAGE -> ADVANCED -> CUSTOM TEXT


2. Stripe and Paymill insert their button and can not be changed. To change the text of any of the ofther payment buttons you can place this code snippet into SETTINGS -> BOOKING PAGE -> ADVANCED -> "Advanced HTML Settings".

Custom Instruction: 
<script type="text/javascript">
$(document).ready(function() { $("#buttoncustominstruction").val("the new text"); }); 
</script>
Authorize.Net: 
<script type="text/javascript">
$(document).ready(function() { $("#buttonauthorizenet").val("the new text"); }); 
</script>
Paypal
<script type="text/javascript">
$(document).ready(function() { $("#buttonpaypal").val("the new text"); }); 
</script>

3 Hide "Book Multiple"

Use the selector in SETTINGS-> BOOKING PAGE-> PAGE DESIGN

== Hover Text ==*

  • To not show the number or rooms/units left place the following code in the SETTINGS->BOOKING PAGE-> ADVANCED "Custom CSS" setting.
.ptdaynumavail {display:none;}
  • To disable the hover text place the following script in the SETTINGS->BOOKING PAGE-> ADVANCED "Advanced HTML Settings" setting.
<script>
$(document).ready(function() {
  var $title = $("td,div,span");
  $.each($title, function(index, value) {
    $(this).tooltip({
      disabled:true
    });  
  });
});
</script>

4 'Change CSS'

Webdesigners use CSS to define the look and formatting of a website. Here a list of common adjustmens which can be done pasting the code provided below into SETTINGS -> BOOKING PAGE -> ADVANCED. Examples:

5 Bigger Room Name

/*code for bigger room name*/

.at_roomnametext{

font-size: 14px /*if you want the text even bigger use a higher number*/

}

6 Background Image

To use a background image upload it to SETTINGS -> BOOKING PAGE -> PICTURES. Replace https://www.beds24.com/pic/p0000/2049/04.jpg with the url of your uploaded picture.

/*code fo use an image as background*/

body { background-image:url(https://www.beds24.com/pic/p0000/2049/04.jpg); }


7 Shadow Arround your Booking Page

Add code in SETTINGS-> BOOKING PAGE -> ADVANCED "Custom CSS"

/*code for a shadow arround your booking page*/

m#bookingpage {

-webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
-moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38);
box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38);
margin-bottom: 20px;	
}

8 Booking Page with Rounded Corners

Add code in SETTINGS-> BOOKING PAGE -> ADVANCED "Custom CSS"

/*code for rounded corners*/

#bookingpage {
border-radius: 7px;
-webkit-border-radius: 7px;	
-moz-border-radius: 7px;		
}