Ik heb een vraag over de eccomerce code bij Google Analytics. Kan er in de handleiding niet echt iets over vinden wat ik nu exact moet invoeren bij de volgende velden. Wat voer ik bijvoorbeeld in bij:
Total - Is dit het totaal? Is dit de verkoopprijs of inkoopprijs? Is het inclusief btw?
Tax - Is dit de belasting over het totaal? Dus als Total € 119,- is, dan is de tax toch € 19,- ?
Price - Is dit inkoop of verkoop? In of ex btw.
Hieronder het voorbeeld script zoals google het beperkt uitlegt.
Total - Is dit het totaal? Is dit de verkoopprijs of inkoopprijs? Is het inclusief btw?
Tax - Is dit de belasting over het totaal? Dus als Total € 119,- is, dan is de tax toch € 19,- ?
Price - Is dit inkoop of verkoop? In of ex btw.
Hieronder het voorbeeld script zoals google het beperkt uitlegt.
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-XXXXX-1"); pageTracker._initData(); pageTracker._addTrans( "1234", // Order ID "Mountain View", // Affiliation "11.99", // Total "1.29", // Tax "5", // Shipping "San Jose", // City "California", // State "USA" // Country ); pageTracker._addItem( "1234", // Order ID "DD44", // SKU "T-Shirt", // Product Name "Green Medium", // Category "11.99", // Price "1" // Quantity ); pageTracker._trackTrans(); </script> |