Hello,
the initial tracking call is executed on one page - then apparently another ‘setEcommerceView’ call - both have two different IDs, so that something is obviously counted twice here - how can that be? In my opinion, ‘setEcommerceView’ should actually be counted as an event here?
Thanks very much
Falk
the Code is:
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDomains", ["*.www.meineDomain.com"]]);
_paq.push(["setDoNotTrack", true]);
_paq.push(["disableCookies"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
_paq.push(['setEcommerceView',
"1234567", // (Required) productSKU
"Produkt Name", // (Optional) productName
"Kategorie", // (Optional) categoryName
// (Optional) price
]);
_paq.push(['trackPageView']);
</script>