// 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

Join Free

All transferring agents have a free built-in 30 day trial to make sure we fit.

We have so many advisors joining us from other agencies.  It makes us wonder what those agencies are doing?  Anyways, we've made it really easy.

​

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.​

Please keep in mind, this is only for existing travel agents, transferring from another agency.

Working with Laptop

Why do you get a month free?

Time to Settle in

We've done this many times, so this should be smooth and easy.  However, it can still take time.  A free month just helps!

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 company.  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