Customise Booking Page: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 54: | Line 54: | ||
== 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 | 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> | |||
== Hide "Book Multiple" == | == Hide "Book Multiple" == | ||