I think what has been described simply sets up simple analytics site tracking but not the full e-commerce tracking that includes conversions. I've had my analytics set up as directed above for a year and have full tracking but showing zero conversions, though I do, in fact actually make sales on my store :-) On this page it shows that more is needed:
http://www.google.com/support/googleanalyt...mp;answer=55528I believe what I need is the form values or code for call backs of Order ID, SKU, Category, Product Name, Price, Quantity, etc. I plugged in their example code, had a transaction, and I had conversion data show up in Google Analytics - BUT it showed the sale data built into the script example, not data pulled from the actual transaction. Can some Monster Code Guy/Gal help??? Here's the example code >>>>>>>>>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-XXXXX-1");
pageTracker._initData();
pageTracker._trackPageview();
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>