in theme.liquid */ (function() { const urlParams = new URLSearchParams(window.location.search); // 1. 嚴格區分:只有帶有 ?utm_source=funo 嘅 Link 先會觸發 if (urlParams.get('utm_source') === 'funo') { // 2. 標記訪客身份 sessionStorage.setItem('is_funo_visitor', 'true'); console.log('Tracking: FUNO specific audience identified.'); // 3. (選填) 如果你想喺頁面頂部加一行細細字歡迎 FUNO 啲客: /* const promoBar = document.createElement('div'); promoBar.style = "background:#000; color:#fff; text-align:center; padding:5px; font-size:12px; letter-spacing:1px;"; promoBar.innerText = "WELCOME FUNO FANS ✨"; document.body.prepend(promoBar); */ } })();