Created
December 14, 2011 20:49
-
-
Save dublado/1478442 to your computer and use it in GitHub Desktop.
analytics e-commerce
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 type="text/javascript"> | |
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', ' _gaq.push(['_setAccount', 'UA-10895797-1']);']); | |
_gaq.push(['_trackPageview']); | |
_gaq.push(['_addTrans', | |
'0000', // NUMERO GERADO PARA downgrade svn PRE-RESERVA | |
'', // | |
'300.39', // VALOR DA RESERVA | |
'', | |
'0', | |
'', | |
'', | |
'BRA' // PAIS DO COMPRADOR / ENTREGA | |
]); | |
_gaq.push(['_addItem', | |
'0000', // NUMERO GERADO PARA downgrade svn PRE-RESERVA | |
'000', // CODIGO DO CRUZEIRO | |
'Eastern Caribbean', // DESTINO DO CRUZEIRO (deve ser codificado para url, urlencode) | |
'Deluxe Suite Varanda SB', // TIPO DE CABINE + CABINE | |
'2099.39', // PRECO UNITARIO (apenas separando decimais por ponto) | |
'1' // QUANTIDADE | |
]); | |
_gaq.push(['_trackTrans']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga); | |
})(); | |
</script> | |
OU | |
E-COMMERCE GOOGLE ANALYTICS | |
<script type="text/javascript"> | |
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', ' _gaq.push(['_setAccount', 'UA-10895797-1']);']); | |
_gaq.push(['_trackPageview']); | |
_gaq.push(['_addTrans', | |
'1234', // NUMERO DO PEDIDO | |
'', // | |
'300.39', // TOTAL DA COMPRA | |
'', // | |
'0', // FRETE | |
'Belo Horizonte', // CIDADE DO COMPRADOR / ENTREGA | |
'Minas Gerais', // ESTADO DO COMPRADOR / ENTREGA | |
'BRA' // PAIS DO COMPRADOR / ENTREGA | |
]); | |
// deve repetir este codigo abaixo para cada item que estiver na compra | |
_gaq.push(['_addItem', | |
'1234', // NUMERO DO PEDIDO | |
'248', // CODIGO DO PRODUTO / SKU | |
'ANALISTA E TÉCNICO DA DPU - CURSO DE REVISÃO ATRAVÉS DE QUESTÕES CESPE', // NOME DO PRODUTO | |
'Defensoria pública da União', // CATEGORIA/SUBCATEGORIA/SUBCATEGORIA | |
'300.39', // PRECO UNITARIO | |
'1' // QUANTIDADE | |
]); | |
_gaq.push(['_trackTrans']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga); | |
})(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment