diff --git a/public/training.html b/public/training.html index a62a7ee..48f6525 100644 --- a/public/training.html +++ b/public/training.html @@ -48,7 +48,8 @@ 🎯 Get the videos + ready-made messages β€” pre-loaded with YOUR link β†’

Open from your dashboard and every message arrives with your personal invite link already in it.

-
Lesson 4 Β· 3.5 min

Objections β€” Without Flinching

Calm, honest answers to the big three: "isn't this a pyramid?", "I don't have the money," and "I don't know crypto." The goal is never to win β€” it's to answer honestly and let them decide.

+
Lesson 4 Β· 3.5 min

Objections β€” Without Flinching

Calm, honest answers to the big three: "isn't this a pyramid?", "I don't have the money," and "I don't know crypto." The goal is never to win β€” it's to answer honestly and let them decide.

+
🧰 Coach's shortcut β€” the Objection bank. Every wall this lesson covers β€” plus the two questions every serious prospect asks: "what's the actual product?" and "is there a members area?" β€” has a written answer waiting in your promo tools: the honest truth behind each one, and a ready-to-send reply you can copy straight into any chat. Teach your two to use it too β€” it's how the whole team answers with one voice. Open the Objection bank β†’

🀝 The Circle Method β€” Module 2: Help Your Two

Getting your two was half the Method. This module teaches the half nobody else does β€” turning you into their coach.

diff --git a/public/training.js b/public/training.js index 900c705..e46fa80 100644 --- a/public/training.js +++ b/public/training.js @@ -13,9 +13,14 @@ fetch('/api/public/config').then(function(r){return r.json()}).then(function(c){ if(el&&c.polUsd>0){var pol=(c.premiumEntryPol||362)+23;el.textContent=' β€” about $'+Math.round(pol*c.polUsd)+' at today’s price';} }).catch(function(){}); -// carry the member's saved id onto tools links so promo assets arrive personalized +// carry the member's saved id onto tools links (hash-preserving, so anchors +// like /tools#objections still land on their section) β€” promo assets and +// objection replies arrive personalized try{var tid=localStorage.getItem('rmc.toolsId')||localStorage.getItem('ctb.myId'); -if(tid&&/^\d+$/.test(tid))document.querySelectorAll('a[href="/tools"]').forEach(function(a){a.href='/tools?id='+tid;});}catch(e){} +if(tid&&/^\d+$/.test(tid))document.querySelectorAll('a[href^="/tools"]').forEach(function(a){ + var m=(a.getAttribute('href')||'').match(/^\/tools(?:\?[^#]*)?(#.*)?$/); + if(m)a.href='/tools?id='+tid+(m[1]||''); +});}catch(e){} // Members area: Circle Method lessons 2-10 + Video 8 are member-only. The // SERVER refuses those video files without a session β€” this makes the page