The profound rantings of the one like Tom Atkinson… and now art gallery and shop.

Zeald does NOT support GA ecommerce tracking

Dear Zeald,

you call yourself an ecommerce website builder - but you do not support the native ecommerce tracking features of Google Analytics - certainly the most popular web analytics package available in 2013.

This is an open letter to Zeald to try to convince you to consider supporting this feature, by default, for no extra charge for your existing customers. If you did support it, the thanks page for a conversion mite include calls to _addTrans, _addItem and _trackTrans, and would allow your clients to see the last traffic source before a conversion - whether it be from any source, Bing, Facebook, Yellow etc, not just Google Adwords. Not only that, but they would be able to see a plethora of multi-dimensional reports that could show average order value, top products, and feed the conversion value easily back into Adwords to enable true ROI calculations to be made for all traffic sources.

Once you have got this working - I'll convert this blog post into a thank you message.

Yet I see no mention of support in your help files, only this one which is about a different tracking method that only works for Adwords:

http://help.zeald.com/Getting+your+site+loaded+and+live/Content+Tips++Tricks/ADVANCED+Embedding+Source+code+given+by+third+parties+into+the+site/Adding+Google+Adwords+Conversion+Tracking+to+order+receipt+page+for+ordersecommerce.html

Adwords Conversion Tracking != Google Analytics Ecommerce Tracking.

https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingEcommerce

To help you get going, below is an example of what the tracking scripts look like:

<html><head><title>Receipt for your clothing purchase from Acme Clothing</title><scripttype="text/javascript">

  var _gaq = _gaq ||[];
  _gaq.push(['_setAccount','UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);
  _gaq.push(['_addTrans',
    '1234',           // transaction ID - required
    'Acme Clothing',  // affiliation or store name
    '11.99',          // total - required
    '1.29',           // tax
    '5',              // shipping
    'San Jose',       // city
    'California',     // state or province
    'USA'             // country
  ]);

   // add item might be called for every item in the shopping cart
   // where your ecommerce engine loops through each item in the cart and
   // prints out _addItem for each
  _gaq.push(['_addItem',
    '1234',           // transaction ID - required
    'DD44',           // SKU/code - required
    'T-Shirt',        // product name
    'Green Medium',   // category or variation
    '11.99',          // unit price - required
    '1'               // quantity - required
  ]);
  _gaq.push(['_trackTrans']);//submits transaction to the Analytics servers

  (function(){
    var ga = document.createElement('script'); ga.type ='text/javascript'; ga.async =true;
    ga.src =('https:'== document.location.protocol ?'https://ssl':'http://www')+'.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();</script></head><body>

  Thank you for your order.  You will receive an email containing all your order details.

</body></html>
Posted by tomachi on August 27th, 2013 filed in Google Adwords, Google Analytics, Online Marketing