top of page

Choose your pricing plan

  • Platonic Pathway

    4.99£
    Every month
    +£29.99 ID, Verification & Safety Screening Fee
    Lonely evenings are a thing of the past. Enjoy a one-on-one friendship match, then join themed Coffee Rooms for engaging conversations and lasting bonds.
     
    • Private one-on-one friendship matches
    • Verified members (ID + background checks)
    • Access to Community Chat Rooms
    • Safe, anonymous messaging inside the app
    • Personality & interest-based AI matching
    • Build lasting bonds & real companionship
  • Duel Pathway

    8.99£
    Every month
    +£29.99 ID, Verification & Safety Screening Fee
    Want the best of both worlds? Experience genuine friendships and soulful romantic connections with verified matches in safe, interest-based community spaces.
     
    • Everything in Platonic + Romantic Pathways
    • Friendship & romance matches in one membership
    • Unlimited access to Community Chat Rooms
    • SoulMatch AI improves matches as you go
    • Priority support & safety monitoring
    • One safe space for all meaningful connections
  • Romantic Pathway

    4.99£
    Every month
    +£29.99 ID, Verification & Safety Screening Fee
    Discover love without swipes or fake profiles. Every member is verified. Our SoulMatch AI connects you based on values. Safe, meaningful introductions await!
     
    • One intentional romantic match at a time
    • Verified profiles (ID + selfie + background screening)
    • SoulMatch AI compatibility based on values & emotions
    • Secure chat with photo unlock only by mutual consent
    • No swiping, no fake profiles, no public browsing
    • Fall in love with confidence, safety first
    • Unlimited access to Community Chat Rooms
  • Test plan

    0£
     
    Valid for 3 months
    bottom of page
    import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { const user = wixUsers.currentUser; // Only run if user is logged in if (user.loggedIn) { const userId = user.id; // Generate a short User ID: usr + last 4 chars of Wix user ID const shortId = "usr" + userId.slice(-4); // Update member profile if User ID is empty wixData.query("Members/PrivateMembersData") .eq("_id", userId) .find() .then((results) => { if (results.items.length > 0) { const member = results.items[0]; if (!member.userID) { // only assign if empty member.userID = shortId; wixData.update("Members/PrivateMembersData", member) .catch((err) => console.error("Error updating User ID:", err)); } } }); } });