いくつかの要件にGoogleanalyticeeコマースを使用したいと思います。そこで、Googleの次のコードスニペットを使用しました。
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
_gaq.push(['_addTrans',
'1234', // order ID - required
'Womens Apparel', // affiliation or store name
'28.28', // total - required
'1.29', // tax
'15.00', // shipping
'San Jose', // city
'California', // state or province
'USA' // country
]);
_gaq.push(['_addItem',
'1234', // order ID - necessary to associate item with transaction
'DD44', // SKU/code - required
'T-Shirt', // product name
'Olive Medium', // category or variation
'11.99', // unit price - required
'1' // quantity - required
]);
_gaq.push(['_trackTrans']);
したがって、このコードサンプルを使用すると、トランザクションが追跡されます。
しかし、私のグーグルアナリティクスプロファイルでは、都市、州、国が表示されていません。order_id、shippingなどの他の詳細はSKUが追跡されていますが。
これについて何か考えがあれば教えてください。
ありがとう、Uttam