This is the fastest way to let someone book a time through Calendly.
Using a link popup will add a link to your page. Clicking on it renders a popup to schedule a time through Calendly.
Adding the parameter type="popupLink"
to the shortcode to use this style.
(Side note: type
is optional. If it is not set, the shortcode will assume you want a popup link.)
The parameter calender="<calendar_name>"
will tell the shortcode which calendar to show.
Add this shortcode to your page:
{{< calendly calendar="bespokesy" type="popupLink" />}}
Schedule time with me (<- click on it to see the popup)
The previous example shows all visible event types for “bespokesy”. You can also pick a specific event type instead. Simply add it to the calendar
parameter like this:
{{< calendly calendar="bespokesy/demo1" type="popupLink" />}}
We can change the link text in two ways: Either add a name between opening and closing shortcode tags, or set the parameter, e.g. text="custom message"
{{< calendly calendar="bespokesy/demo1" type="popupLink" >}}
Make an appointment
{{< /calendly >}}
{{< calendly
calendar="bespokesy/demo1"
type="popupLink"
text="Book a time to talk"
/>}}