Integrating the Getmyboat checkout link into your website and social media can streamline your booking process, making it easier for customers to reserve your services directly. Below, you’ll find step-by-step instructions on how to add this link to various platforms, along with customizable web elements.
Using the Admin Panel
Share Link: Directly share your link via Facebook or Twitter using the provided modal.
Copy Link: Click to copy the URL and then paste it wherever needed.
Integrating on Social Media
For social media platforms like Facebook and Twitter, you can directly share your link in posts, or add it to your profile bio. Use the direct link along with an engaging call-to-action to encourage immediate bookings.
Step 1: Add the Link to an HTML Anchor Tag
If you want to embed the checkout link directly into text on your website, you can use an HTML anchor tag. This is particularly useful for blog posts or informational pages where you mention your services.
<!-- Add this HTML code to your webpage where you want the booking link to appear -->
<a href="YOUR_DIRECT_CHECKOUT_LINK">Book Now</a>
Step 2: Create a Custom Button on Your Website
To make the booking option stand out, you can create a button on your website. Here’s how you can add a stylish "Book Now" button using HTML and CSS:
<!-- Add this HTML and CSS to your website to create a 'Book Now' button -->
<a href="YOUR_DIRECT_CHECKOUT_LINK" style="background-color: #6CF2F9; color: black; padding: 10px 20px; display: inline-block; text-align: center; border-radius: 5px; text-decoration: none; font-family: Arial, Helvetica, sans-serif;">Book Now</a>
Step 3: Add Query String Parameters to the URL
Query strings can customize the checkout experience by pre-selecting dates, times, or other options based on what the customer has already chosen, those options can be available directly on your page to create a more seemingly experience. Here’s how to append these to your checkout link:
Full Query Example:
<a href="YOUR_DIRECT_CHECKOUT_LINK?date=2025-04-02&time=10:00:00&duration=1&captained=true">Book Now</a>
Date Only:
This option will open the calendar to a specific date if available.
<a href="YOUR_DIRECT_CHECKOUT_LINK?date=2025-04-02">Book Now</a>
Duration as a Number:
Sets the duration of the rental.
<a href="YOUR_DIRECT_CHECKOUT_LINK?duration=1">Book Now</a>
Specific Time:
Specify a booking time using the 24-hour format.
<a href="YOUR_DIRECT_CHECKOUT_LINK?time=09:00:00">Book Now at 9 AM</a>
Note: Any date in the past is ignored to prevent booking errors.