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