Skip to main content

Add a Scheduler to your website using an iframe

Do you want visitors to book appointments directly from your website? By using an iframe, you can easily display the Scheduler on a page of your website. In this article, we explain how to copy the Scheduler link from Trackler and add it to your website.

Updated over a week ago

You can place the Scheduler on an existing webpage using an iframe. This loads your Scheduler directly on the page, allowing visitors to schedule an appointment immediately.

Step 1: Copy the Scheduler link in Trackler

Each Scheduler has its own unique link. You’ll need this link to display the Scheduler on your website.

  1. Go to Schedulers in Trackler.

  2. Create a new Scheduler or open an existing Scheduler.

  3. Click the link icon for the Scheduler you want to use.

  4. Copy the full Scheduler URL.

Example of a Scheduler link:

https://trackler.tracklerpro.nl/app/meetings/schedule/8493f3bd-1ff8-4231-8a07-f66401002b68

Step 2: Add the Scheduler to your website

Place the following HTML code on the page where you want the Scheduler to appear:

<iframe src="SCHEDULER_URL" style="width: 100%; height: 100vh; border: none;"></iframe>


Replace SCHEDULER_URL with the full Scheduler link you copied from Trackler.

Example:

<iframe src="https://trackler.tracklerpro.nl/app/meetings/schedule/8493f3bd-1ff8-4231-8a07-f66401002b68" style="width: 100%; height: 100vh; border: none;"></iframe>


After adding this code, the Scheduler will appear directly on your webpage, allowing visitors to book appointments without leaving your site.

Did this answer your question?