Reputation: 41
I use Google analytics tracking code to track my orders as in
<pre>
<script type="text/javascript" lang="javascript">
{literal}
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '-------']);
_gaq.push(['_trackPageview']);
</pre>
I want to pass additional variable (Service information) to analytics and view it under Ecommerce > Overview > As list under Top Revenue Sources. I tried to edit the script by defining custom variable, but this appears in the Audience > Custom > Custom Variables section
Let me know how to add the new details under ecommerce overview.
Thanks! Farhath
Upvotes: 0
Views: 71
Reputation: 32780
You can't (not programmatically in any case). You'd have to store your value as a custom variable and then create a custom report that includes the value, or set the custom variable as secondary dimension in a standard report and create a shortcut.
Upvotes: 0