Customise Booking Page: Difference between revisions

Jump to navigation Jump to search
m Annette moved page Booking Page: Customise Booking Page to Customise Booking Page over redirect
No edit summary
Line 50: Line 50:
There is contextual help with each setting to assist you with the setup.
There is contextual help with each setting to assist you with the setup.


== '''Advanced Options''' ==
== '''Further and Advances Options''' ==


== Change Default Text==
== Change Default Text==


You can exchange any of the default text on the booking page in SETTINGS -> BOOKING PAGE -> ADVANCED -> CUSTOM TEXT
You can exchange any of the default text on the booking page in SETTINGS -> BOOKING PAGE -> ADVANCED -> CUSTOM TEXT
== Hide "Book Multiple" ==
Use the selector in SETTINGS-> BOOKING PAGE-> ADVANCED
== Disable Hover Text ==
Place the following script in SETTINGS->BOOKING PAGE-> ADVANCED "Advanced HTML Settings" setting.
<pre>
<script>
$(document).ready(function() {
  var $title = $("td,div,span");
  $.each($title, function(index, value) {
    $(this).tooltip({
      disabled:true
    }); 
  });
});
</script>
</pre>


== 'Change CSS' ==
== 'Change CSS' ==
Line 78: Line 98:
}
}


== Hide "Book Multiple" ==
Use the selector in SETTINGS-> BOOKING PAGE-> ADVANCED
== Exchange default texts ==
Go to SETTINGS-> BOOKING PAGE-> ADVANCED "Custom Text"


== Shadow Arround your Booking Page ==
== Shadow Arround your Booking Page ==
Line 117: Line 130:
-moz-border-radius: 7px;
-moz-border-radius: 7px;
}
}
== Disable Hover Text ==
Place the following script in SETTINGS->BOOKING PAGE-> ADVANCED "Advanced HTML Settings" setting.
<pre>
<script>
$(document).ready(function() {
  var $title = $("td,div,span");
  $.each($title, function(index, value) {
    $(this).tooltip({
      disabled:true
    }); 
  });
});
</script>
</pre>