Last active
January 6, 2016 10:44
-
-
Save hakkikonu/6ee163d545f46449be09 to your computer and use it in GitHub Desktop.
A Google Tag Manager & Google Analytics Transaction. -hakkı konu - semseo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.dataLayer = window.dataLayer || []; | |
dataLayer.push({ | |
'ecommerce': { | |
'purchase': { | |
'actionField': { | |
'id': 'SIP_568ceb6d583ce', // Sipariş id, bu unique bir değer olmalı. | |
'affiliation': 'HAKKI KONU', // Müşteri adı | |
'revenue': '114.00', // Toplam tutar (vergi, kargo ve diğer giderler dahil) | |
'tax':'17.39', // vergi tutarı | |
'shipping': '15.00', // kargo ücreti (eğer siz karşılıyorsanız 0 olmalı) | |
'coupon': '' // burası boş kalabilir | |
}, | |
'products': | |
[ | |
{ | |
'id': '16068', // ürün id | |
'name': 'Lorus RRSB33L9 Kol Saati', // ürün adı | |
'brand': 'Lorus', // ürün markası | |
'category': 'Lorus', // ürün kategorisi (biz marka isimlerini kategori olarak kullanıyoruz. Belki siz başka birşeyler yazarsınız) | |
'price': 99.00, // ürün fiyatı (vergi dahil) | |
'quantity': 1, // ürün adeti | |
'variant': '', // boş bırakabilirsiniz | |
'coupon': '' // boş bırakabilirsiniz | |
}, | |
/*sepette birden fazla ürün var ise döngü ile birlikte yukarıdaki formata uyarak buraya yazdırıyoruz*/ | |
] | |
} | |
} | |
}); | |
</script> | |
<!-- Google Tag Manager --> | |
<!-- GTM-P2BJRQ yerine kendi oluşturduğunuz ID'yi girmeniz gerekiyor --> | |
<noscript> | |
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-P2BJRQ" height="0" width="0" style="display:none;visibility:hidden"></iframe> | |
</noscript> | |
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
})(window,document,'script','dataLayer','GTM-P2BJRQ'); | |
</script> | |
<!-- End Google Tag Manager --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment