top of page
bottom of page
// Site Koduna veya her sayfaya eklenecek kod import { session } from 'wix-storage'; import { location } from 'wix-location'; $w.onReady(function () { let gclid = location.query.gclid; if (gclid) { session.setItem("gclid", gclid); // GCLID'yi oturum depolamasına kaydet } }); // GCLID'yi formlara eklemek için yardımcı fonksiyon (isteğe bağlı) export function getGclidFromSession() { return session.getItem("gclid"); }