| eCom tracking correctly installed, not populating report suite (source code included for review) | jhellitt | 6/30/12 8:36 AM | I've been debugging an issue for a client of mine and am at my wits end. Any help is greatly appreciated - eCommerce tracking code suddenly stopped flowing into report suite on 6/26. - Site was on traditional snippet so after standard debugging meth |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | EdTalbot_YourCIO | 6/30/12 11:48 AM | Try adding a _gaq.push(['_trackPageview']); after the trackTrans, that should do it. For some reason that seems to be needed with the async code for ecom transactions. |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | AKungen | 7/2/12 12:40 AM | We had the same problem, the report stopped receiving data at 0:00, 27th. The profile with no filter works fine, only profiles with transaction ID filters have this problem. Has reported this in Report Bug section see http://productforums.google.com/ |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | Sampatirao | 7/3/12 9:23 PM | Hi, It Google has done some work, and the eCommerce data is appearing fine from Yesterday, 3rd July 19:00 GMT. RegardsSam. |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | andriansuwito | 7/5/12 10:51 PM | Hi Jhellitt2, I'm sorry for hijacking your thread. I have a similar problem problem, been trying to fix it since last month, so I guess it eliminates the possibility that it caused by the recent GA problem. Anyway, this is a source code from a test |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | Sampatirao | 7/5/12 11:57 PM | Hi Andrian, You are missing the trackTrans method in the eCommerce code and also shift the _gaq.push(['_trackPageview']); to end of the eCommerce tracking code to work perfectly. RegardsSam |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | andriansuwito | 7/8/12 8:54 PM | Hi Sampatirao, Thank you for your response. But unfortunately I still not able to track any eComerce tracking. Though I changed the code according to your suggestion. |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | Sampatirao | 7/9/12 3:03 AM | Hi, Seems you must be getting java script error, _gaq is not defined? because in your code declaration for gaq is missing. var _gaq = _gaq || []; Please check the complete code and use httpwatch to track the eCommerce request that is going to the G |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | andriansuwito | 7/9/12 7:19 PM | Hi Sampatirao, In fact I did declare _gaq variable. The code I have posted above is from html sourcecode, therefore it hide any variable declaration. However just to make things clear, this is my complete code |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | Sampatirao | 7/9/12 8:45 PM | Hi, The outgoing request is not the eCommerce, its tracking Page view request. Still in this code I can see that the trackepageview is above the eCommerce code, move that to after _trackTrans, and then check the requests to GA server. RegardsSam |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | andriansuwito | 7/19/12 9:28 PM | Hello, I was in to the system upgrade last week, and now im back to GA eCom problem. I have changed the code according to your suggestion as follows: <noscript> <div style="display:inline;"> <img height="1" width="1" style="border-style:none;" alt= |
| Re: eCom tracking correctly installed, not populating report suite (source code included for review) | claudia_k | 7/20/12 1:02 PM | Hi there, The code in your last post is not correct - the Google Analytics script tag is within a noscript tag which does not make sense. Your code should look like this: |