Multilingual Booking Page: Difference between revisions

Jump to navigation Jump to search
No edit summary
 
(26 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:How to]]
[[Category:How to]]
[[Category:Booking_Page]]
[[Category:Booking_Page]]
[[Category:Wordpress]]
[[Category:Widgets]]
[[Category:Developers]]
<div class="heading">Booking Page for different languages</div>
This page explains how to create multi language booking page


You can activate the languages you want to use in SETTINGS->ACCOUNT->LANGUAGES. Make sure you enter descriptive texts for all languages you want to use. The default language for your booking page is the one set in SETTINGS->ACCOUNT->LANGUAGES. If you are using an embedded booking page on a multilingual web site you can embed you booking page with a different default language for each language version adding a language parameter:
__TOC__
=Activate Languages=
Go to  in {{#fas:cog}} (SETTINGS) BOOKING ENGINE > INTERNATIONALISATION
*Activate the languages you want to use on your booking page
*Set the default language for your booking page is
 
After you have done this you will see a tab for each activated language wherever you can enter your own descriptions.
 
<span style="color: #f3e504; font-size: 250%;" >{{#fas:lightbulb}} </span> Make sure you enter descriptive texts for all languages you want to use.
 
=Use Different Languages on your Website=
==Booking Page==
If you are using an embedded booking page on a multilingual web site you can embed your booking page with a different default language for each language version adding a language parameter:


'''Example'''
'''Example'''


*Code for default language booking page:
*Code for default language booking page:
  <nowiki><iframe src ="https://www.beds24.com/booking2.php?propid=3103&amp;numdisplayed=5&amp;numnight=1&amp;numadult=2-1&amp;referer=iframe/" width="800" height="2000" style="max-width:100%;border:none;overflow:auto;"><p><a href="https://www.beds24.com/booking2.php?propid=3103&amp;referer=iframe/" title="Book Now">Book Now</a></p></iframe></nowiki>
  <nowiki><iframe src ="https://beds24.com/booking2.php?propid=3103&amp;numdisplayed=5&amp;numnight=1&amp;numadult=2-1&amp;referer=iframe/" width="800" height="2000" style="max-width:100%;border:none;overflow:auto;"><p><a href="https://beds24.com/booking2.php?propid=3103&amp;referer=iframe/" title="Book Now">Book Now</a></p></iframe></nowiki>
 
*For a French booking page you add the language parameter <nowiki>&lang=fr</nowiki> to the URL. Code for a French booking page:


*Code for a French booking page:
<nowiki><iframe src ="https://beds24.com/booking2.php?propid=3103&amp;numdisplayed=5&amp;numnight=1&amp;numadult=2-1&amp;referer=iframe&amp;lang=fr/" width="800" height="2000" style="max-width:100%;border:none;overflow:auto;"><p><a href="https://beds24.com/booking2.php?propid=3103&amp;referer=iframe/" title="Book Now">Book Now</a></p></iframe></nowiki>


<nowiki><iframe src ="https://www.beds24.com/booking2.php?propid=235&amp;numdisplayed=5&amp;numnight=1&amp;numadult=2-1&amp</nowiki>'''&lang=fr'''<nowiki>&referer=iframe/" width="800" height="2000" style="max-width:100%;border:none;overflow:auto;"><p><a href="https://www.beds24.com/booking2.php?propid=3103&amp;referer=iframe/" title="Book Now">Book Now</a></p></iframe>
If you use RTL(Arabic, Hebrew) languages you will need to add custom CSS to your booking page to change the alignment. Please see [[Custom_CSS#Adjust_alignment_for_RTL_languages_.28Arabic.2C_Hebrew.29|here]].
</nowiki>


See  [[Developers| list of all language parameters]]
See  [[Developers| list of all language parameters]]


<span style="color: #f3e504; font-size: 150%;" >{{#fas:lightbulb}} </span>  If you use a script to detect the language you will need to add another script in which you specify the language parameter as well.
==Widgets==
In {{#fas:cog}} (SETTINGS)  BOOKING ENGINE > BOOKING WIDGETS you can create widgets in multiple languages.
The widget designer allows you to choose a language.
If you are using Wordpress you can do this in the shortcode. For detailed information please log into Wordpress and go to SETTINGS-> BEDS24 ONLINE BOOKINGS,


If you are using Wordpress you can add the language parameter to the shortcode.
==Wordpress==
If you are using '''Wordpress''' you can add the language parameter to the shortcode.


'''Example:'''
'''Example:'''
Line 27: Line 54:
For detailed information please log into Wordpress and go to SETTINGS-> Beds24 Online Bookings
For detailed information please log into Wordpress and go to SETTINGS-> Beds24 Online Bookings


==Availability Calendar==
The translation options for the availability calendar widget are limited. To translate "Click your arrival date" add the following script to the source code of the page which displays the widget:
<script>
$( document ).ready(function() {
  $('.b24calendarclickinstruction').html("the new text");
});
</script>


'''Booking Widgets'''


If you want different language versions of the booking widgets you will need to search the code for the words you want to translate and replace them. Make sure you do not change only word and not any code because this will cause the widget to break.
For WordPress use this:


If you are using Wordpress you can do this in the shortcode. For detailed information please log into Wordpress and go to SETTINGS-> Beds24 Online Bookings
<script>
jQuery( document ).ready(function() {
  jQuery('.b24calendarclickinstruction').html("the new text");
});
</script>