fbq('track', 'ViewContent', {
content_ids: ['123'], // 'REQUIRED': array of product IDs
content_type: 'product', // RECOMMENDED: Either product or product_group based on the content_ids or contents being passed.
});
// Validated session: sadece bu şartlar sağlanınca aktif olacak
function validateSession() {
sessionStorage.setItem('validatedSession', 'true');
}setTimeout(validateSession, 10000); // 10 saniye kuralı
window.addEventListener('scroll', () => {
if (window.scrollY > window.innerHeight * 0.2) validateSession();
});
window.addEventListener('mousemove', validateSession);
window.addEventListener('click', validateSession);
window.addEventListener('touchstart', validateSession);
Obsidia Digital | E-Ticaret Paketleri İle Hazırlanmıştır.