I am setting up ecommerce tracking for a client and have a few questions to aid my understanding of Google Analytics.
I understand that you have to have an '_addItem' for every product that appears in the receipt. Does this require a change of the JavaScript in any way, or does it use what is already there to generate each item's data automatically?
My other question is: when the JavaScript pulls the transaction and item information from the receipt, do I have to do anything to my website code to make sure that the identifiers used in the JavaScript match the identifiers within the receipt? How does the JavaScript below know what 'total' means in terms of the data it is collecting?
I hope I have made myself clear, please ask if you would like me to elaborate. I'm really just trying to get my head around how this works and what I need to do to get it working.
<script type="text/javascript">
pageTracker._addTrans(
"order-id", // required
"affiliate or store name",
"total",
"tax",
"shipping",
"city",
"state",
"country"
);
pageTracker._addItem(
"order-id", // required
"SKU",
"product name",
"product category",
"unit price", // required
"quantity" //required
);
pageTracker._trackTrans();
</script>