import wixUsers from 'wix-users'; import wixLocation from 'wix-location'; $w.onReady(function () { // Check if the current page is the subscribers page if (wixLocation.path.includes("/subscribers/")) { wixUsers.onReady(async function () { const user = wixUsers.currentUser; // Check if the user is logged in if (user.loggedIn) { // User is logged in, get email address const email = user.email; // User Email // Append email address to the URL const newURL = appendEmailToURL(email); // Redirect to the new URL wixLocation.to(newURL); } else { // User is not logged in, prompt to log in await wixUsers.promptLogin({ mode: 'login' }); } }); } }); function appendEmailToURL(email) { // Example URL to append the user email let originalURL = "https://souplessecycling.com/subscribers/"; // Replace "@" with "%40" in the email address const sanitizedEmail = email.replace("@", "%40"); // Append email address to the URL let newURL = originalURL + sanitizedEmail; return newURL; }
top of page
459378867_8920141871348198_9159613384694688520_n (1).jpg

We Are Coming Soon

Souplesse Cycling is not yet available in your area! Join the waitlist, answer a few questions and be the first to know when we land in your area! Plus early bird discounts!

Thanks for submitting!

bottom of page