Overview
Property users often need to include additional details in the Rate Plan names for their potential guests. It is especially useful to communicate important information, such as resort fees that are already included in the rates.
This article includes a step-by-step guide for customizing and adding text to Rate Plans on the Booking Engine page, facilitating a more transparent booking process.
Add custom text to Rate Plan names
Version 1 - All languages (English text)
- In the Account menu, go to Settings
- Click on Booking Engine
- Click on the Customize tab
- Paste the code below in the Custom Meta Tags field. Replace the Custom Text part with your preferred text (for example, "Includes 30$ Resort Fee")
- Click Save
- The code below will apply the text customization in English to all language pages on your Booking Engine.
- Keep the custom text area short. If the text is too big, it could negatively affect the layout of the Booking Engine.
<!-- **START** Includes (Custom Text) on a new line after All Rate Plan and Standard Rate titles; all accommodation types - Single-language version 12.08.2024 **START** -->
<style>
.cb-rate-plan .cb-rate-plan-title-text::after {
content: '(Custom Text)';
font-size: 13px; /* Adjust font size as needed */
color: #000; /* Adjust text color as needed */
display: block; /* do not edit */
margin-top: 4px; /* Adjust spacing as needed */
}
</style>
<!-- **END** Includes (Custom Text) on a new line after All Rate Plan and Standard Rate titles; all accommodation types - Single-language version 12.08.2024 **END** -->
Text preview on the Booking Engine page
Version 2 - Single language (English) + Spanish
Access the Customize section of the Booking Engine as explained above, and add the code below in the Custom Meta Tags, replacing the Custom Text area with the desired text.
- The code below will apply the English language version to all language pages except Spanish on your Booking Engine.
- The Spanish text version will only appear when the Booking Engine page is set to Spanish.
<!-- **START** Includes (Custom Text) on a new line after All Rate Plan and Standard Rate titles; all accommodation types; this is the English + Spanish version 12.08.2024 **START** -->
<style>
/* English Customization - will apply to all languages except Spanish */
.cb-rate-plan .cb-rate-plan-title-text::after {
content: '(Custom Text)';
font-size: 13px; /* Adjust font size as needed */
color: #000; /* Adjust text color as needed */
margin-top: 4px; /* Adjust spacing as needed */
font-weight: 500; /* Adjust boldness as needed */
display: block; /* do not edit */
}
/* Spanish Text Customization - will only apply for Spanish */
html:lang(es) .cb-rate-plan .cb-rate-plan-title-text::after {
content: '(Texto Personalizado)';
font-size: 13px; /* Adjust font size as needed */
color: #000; /* Adjust text color as needed */
margin-top: 4px; /* Adjust spacing as needed */
font-weight: 500; /* Adjust boldness as needed */
display: block; /* do not edit */
}
</style>
<!-- **END** Includes (Custom Text) on a new line after All Rate Plan and Standard Rate titles; all accommodation types; this is the English + Spanish version 12.08.2024 **END** -->
Text preview (Spanish) on the Booking Engine page
For other languages or additional Booking Engine customization
- See the Booking Engine Plus language wrappers.
- Explore the Booking Engine Plus customization services.
Comments
Please sign in to leave a comment.