ts2000abc Posted September 18, 2009 Share Posted September 18, 2009 How should the _addItem() function be used when tracking orders with multiple products? Now my GA code structure is: pageTracker._trackPageview(); pageTracker._addTrans(...order info...) pageTracker._addItem(...product#1...) pageTracker._addItem(...product#2...) pageTracker._addItem(...product#3...) pageTracker._trackTrans(); and structure of additem is (copy+paste from manual) pageTracker._addItem( "1709091336025", "015", "product", "category", "13.50", "1" ); The _addTrans() seems to be working fine, but _addItem() doesn’t transmit values correctly (all the products are not showing up). Any idea why product info is not showing up in GA ? Quote Link to comment Share on other sites More sharing options...
.josh Posted September 19, 2009 Share Posted September 19, 2009 are you using the same SKU in the SKU argument (or not supplying one at all)? If that value is the same for all your _addItem, they are all treated as the same product. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.