// In Site Code (make sure Dev Mode is enabled) import wixLocation from 'wix-location'; import { session } from 'wix-storage'; $w.onReady(() => { // Check for the gclid parameter in the URL const gclid = wixLocation.query["gclid"]; if (gclid) { // Store it in session storage (persists during the visitor’s session) session.setItem("gclid", gclid); console.log("gclid captured:", gclid); } }); // Import required modules import { session } from 'wix-storage'; import wixData from 'wix-data'; // This code runs when the page is ready $w.onReady(() => { // Attach an event handler to your checkout button. // Make sure your button's ID is "btnCheckout" or update the selector accordingly. $w("#btnCheckout").onClick(() => { // Retrieve the gclid from session storage (captured in Step 1) const gclid = session.getItem("gclid") || ""; // Generate a unique order ID. Here we use the current timestamp. const orderId = new Date().getTime().toString(); // Create an object representing the new order record. const orderRecord = { orderId: orderId, gclid: gclid, status: "initiated" // you can update this later via Zapier when conversion is confirmed }; // Insert the record into the "Orders" collection wixData.insert("Orders", orderRecord) .then((result) => { console.log("Order record created:", result); // Optionally, save the orderId in session storage for later reference: session.setItem("orderId", result.orderId); // If your built-in Stripe Checkout integration automatically opens a popup, // you don't need to add additional code here. // The order record is now stored for your Zapier workflow. }) .catch((err) => { console.error("Error creating order record:", err); }); }); });
top of page
transferring agent

Ready to Leave Your Current Host Agency? Get 30 Days Free to Try Gateway!

Fast onboarding, expert transition help, and the support you deserve to grow your business.​

​

Step 1 - Choose your package

Step 2 - Complete the registration

Step 3 - Start your Agent Onboarding Program

After the sign-up process you'll schedule your call, search around in our portal, and start setting up your profile.  You'll be transferred to our "Transferring Agent Specialist" (Yeah, we hired one of these) to help make your transition easy and not be put in a queue with other new agents.  Call it a white glove treatment.​

Not transferring, but brand new?
Click Here

Working with Laptop
Anchor 1

My Story - Sarah M.

"Leaving my old host agency was terrifying — until I found Gateway Travel. Their onboarding team walked me through every step and made the transition seamless. I finally feel supported again!"

My Story - David L.

"I thought switching agencies would be a nightmare, but Gateway made it so easy. Within a couples days, I was booking travel again — with way better support and higher commissions!"

Time to Settle in

As a trusted host agency, we've done this many times—so the process should be smooth and easy. However, transitions can still take time, and that’s why we offer a free month to help make things easier!

Credential and Booking Transfers

This is the most difficult part.  Too many old, unenforceable, rules govern the industry.  We help you navigate these conversations with your previous host agency.  Knowledge is power!

Agency Fit Check

Not everyone gets along!  We get it. Although we have a high success rate, somebody may not feel it's a fit.  If so, we want everyone to feel good about breaking up.  It's not you, it's me!

bottom of page