hi again...
so lookin at this google help page:
https://adwords.google.com/support/b...203&topic=8198
i'm gonna go through the page at the above link...
Code:
Enabling E-Commerce Tracking
The first step of tracking e-commerce transactions is to enable e-commerce reporting for your website's profile. To enable e-commerce reporting, please follow these steps:
1. Log in to your account.
2. Click Edit next to the profile you'd like to enable.
3. On the Profile Settings page, click edit next to Main Website Profile Information.
4. Change the E-Commerce Website radio button from No to Yes.
ok, did this...
Code:
Receipt Page Format
The second step is to ensure that the tracking code is included in the receipt page in the standard fashion. This may be done using a server side include, or other template driver, or can simply be hand-coded into your HTML code:
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct="UA-xxxx-x";
urchinTracker();
</script>
i believe this is what the mod for zen actually does, so i believe this part is also done....
Code:
Next, somewhere in the receipt below the tracking code, the following lines need to be written by your engine. Everything in brackets should be replaced by actual values, as described in the Parameter Reference, below.
<form style="display:none;" name="utmform">
<textarea id="utmtrans">UTM:T|[order-id]|[affiliation]|
[total]|[tax]| [shipping]|[city]|[state]|[country] UTM:I|[order-id]|[sku/code]|[productname]|[category]|[price]|
[quantity] </textarea>
</form>
Finally, the utmSetTrans function must be called after the form is submitted in order to record the transaction. This can be most easily accomplished through a body onLoad event within the opening <body> tag:
<body onLoad="javascript:__utmSetTrans()">
If you don't have the ability to edit the body tag, you can call the utmSetTrans function within a separate script tag as long as you ensure that the function is called after the form:
<script type="text/javascript">
__utmSetTrans();
</script>
do i need to do these manually? i dont' think i can...
everything works fine in analytics, with the exception of the 'ecommerce'
(when i'm looking at my ECommerce Overview, i see a flatline with all "0"s and 0%'s....
any help, would be appreciated.
(i know i should just wait for the videotutorial, but i'm having some time for this, and wouldn't mind getting it working this weekend...
:)
ty in advance.
bill
Bookmarks