window.addEventListener("message", function (event) { if (event.origin !== "https://myhearingportal.com") return; var data = event.data; if (typeof data === "string") { try { data = JSON.parse(data); } catch (e) { return; } } if (!data || data.event !== "booked_appointment") return; if (window.__bookingTracked) return; window.__bookingTracked = true; if (typeof gtag === "function") { gtag('event', 'conversion', { 'send_to': 'AW-16518706873/16OiCMLPqoIbELnt3cQ9', 'value': 1.0, 'currency': 'GBP' }); } if (typeof fbq === "function") { fbq('track', 'Schedule'); // 'Schedule' is Meta's standard event for bookings; keep 'Contact' if campaigns optimize on it } }, false);