Note: This feature is not yet available to all users.
You can replace your site’s default Wix Booking Calendar page with your own customized version. This enables you to modify or extend the page’s functionality to suit your precise business needs.
Note: Custom app pages are available only on Wix Editor.
To integrate the page into your site’s booking flow and implement its functionality, you need to add code to the page and use Velo APIs.
Your code has to do several things:
- Get data about the selected service and query session availability data.
- Handle UI initialization and interactions.
- Implement any customized business logic.
- Direct users to the next page in the flow.
To create a custom calendar page, do the following:
- Turn on Dev Mode.
- Click Pages & Menu
on the left side of the Editor.
- Click Bookings Pages, and then on the Booking Calendar page, click
and select Replace with custom page.
- In the confirmation panel, click Replace.
Add elements to the page to create your business’s customized design and functionality.
At a minimum, these elements must:
- Display information about the selected service.
- Provide the site visitor with a way to view availability and select a slot.
- Provide an action button that navigates to the next page in the flow (usually the Booking Form).
- Use the
getAppPageData()
function to get the service object associated with the page. For example:
Copy Code
import wixWindow from 'wix-window';import { availabilityCalendar } from 'wix-bookings.v2';import wixLocation from 'wix-location';$w.onReady(async function () {const pageData = await wixWindow.getAppPageData();const serviceId = pageData.service.id;});
- Get the service’s session availability data using the
availabilityCalendar.queryAvailability()
function.
The following example queries data for the upcoming week:
Copy Code
const today = new Date();const nextWeek = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000);let query = {filter: {serviceId: [serviceId],startDate: today,endDate: nextWeek,}}const selectedTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone;const options = {timezone: selectedTimezone};const availability = await availabilityCalendar.queryAvailability(query, options);const entries = availability.availabilityEntries;
- Initialize your custom page’s elements with the service information and availability data that you retrieved in the previous steps. Use the
$w
namespace to control the page’s elements. For example:
Copy Code
$w('#serviceName').text = myService.name;const slotOptions = [];entries.forEach((entry, index) => {const label = `${entry.slot.startDate}-${entry.slot.endDate}`;const value = `${index}``;slotOptions.push({ label, value });});$w('#dropdown').options = slotOptions;
-
Depending on the functionality you’re developing, implement any business logic that your customized page requires.
-
Add an event handler to the page’s action button so that it navigates to the next page in the flow, which is typically your site’s Booking Form. You can create a link to a preloaded Booking Form, specifying the appropriate query params based on the user's selections.
For example:
For example:
Copy Code
$w('#nextButton').onClick(() => {const selectedIndex = $w('#dropdown').selectedIndex;const selectedSlot = entries[selectedIndex].slot;let queryParams = `?bookings_serviceId=${serviceId}&bookings_resourceId=${selectedSlot.resource._id}&bookings_startDate=${encodeURIComponent(selectedSlot.startDate)}&bookings_endDate=${encodeURIComponent(selectedSlot.endDate)}&bookings_timezone=${selectedTimezone}`;const nextUrl = "/booking-form" + queryParams;wixLocation.to(nextUrl);})
Your custom page can now display the service’s data, provide site visitors with an interface for selecting an available slot, and direct them to the next page in the booking flow.