Link Website to Client Portal
The following will show you how you can link your website with your online client portal so you can start taking online reservations.
Note
Before you can start taking online reservation you will need to do the Stripe User Onboarding if not already done.
Online Client Portal URL¶
The URL used to access your campground can be found under the Online Campground Settings panel. This is the unique url that will be used to redirect your clients to make online reservations.
Book Now Button Example¶
The following is an example how you would link your client portal with your website.
To use the Button example bellow simply replace YOUR_URL_HERE with your online client meta link and add this html code to your website. Then when clients click the Book Now button they will be redirected to your online client portal.
<button onclick="window.open('YOUR_URL_HERE', '_blank');"
style="appearance: none;
-webkit-appearance: none;
cursor: pointer;
background: #db7821;
color: #ffffff;
padding: 14px;
border: 0px;
border-radius: 20px;
transition: all 0.2s ease 0s;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);"
onMouseOver='this.style.backgroundColor="#c26615"'
onMouseOut='this.style.background="#db7821"'>Book Now</button>
See the Pen Untitled by Pitch Camp (@pitch-camp) on CodePen.