Problem - About 20% of my transactions are missing from the below report and all other reports.
Google analytics: ecommerce->transactions, sort by transaction # descending.
I haven't found any commonalities among the missing transactions that differ from other transactions that were reported successfully.
Otherwise the conversion tracking is working fine. And the analytics reporting and adwords conversion tracking appear to be working.
Simple Google Analytics 1.2.2 on Zencart 1.3.8a. My sales are a mix between Paypal IPN (website payments standard) and credit card offline processing. Some sales for either payment method are missing. www.adamantbarbell.com
analytics configuration in zencart:
Analytics Account UA-356915-2
Target Address delivery
Affiliation adamantbarbell.com
Use sku/code products_model
Use Older "urchin.js" Tracking Code No
Activate Conversion Tracking Yes
Google AdWords Conversion Tracking Number 072280010
Google AdWords Language en_US
And in case it helps, I found the following code on the bottom of the source of my checkout_success page after I completed a test transaction with a dummy credit card number. Does it look okay?
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-356915-2");
pageTracker._initData();
pageTracker._trackPageview();
pageTracker._addTrans(
"799",
"adamantbarbell.com",
"43.72",
"2.72",
"8.00",
"Richmond",
"California",
"United States"
);
pageTracker._addItem(
"799",
"ps-85415",
"Quick Tape Measure",
"Testing & Measurement",
"33.00",
"1"
);
pageTracker._trackTrans();</script><!-- Google Code for purchase Conversion Page -->
<script language="JavaScript" type="text/javascript">
<!--
var google_conversion_id = 1072280010;
var google_conversion_language = "en_US";
var google_conversion_format = "1";
var google_conversion_color = "FFFFFF";
if (43.72) {
var google_conversion_value = 43.72;
}
var google_conversion_label = "purchase";
//-->
</script>
<script language="JavaScript" src="https://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<img height=1 width=1 border=0 src="https://www.googleadservices.com/pagead/conversion/1072280010/?value=43.72&label=purchase&script=0">
</noscript>
Bookmarks