google-analytics

Google Analytics (gtag.js): Product List Name doesn't appear but other fields do

▼魔方 西西 提交于 2019-12-04 18:55:40
I'm implementing GA Enhanced E-commerce using the new gtag.js library. I want to send information about product impressions and product clicks, following the documentation here: https://developers.google.com/analytics/devguides/collection/gtagjs/enhanced-ecommerce . Everything works (I can see the data in GA), except for Product List Name . The docs seem to be inconsistent in naming the property (sometimes it's called "list" and sometimes "list_name" ) and none of them worked for me. Here's my (simplified) code: deals = [ { "id": "18", "name": "Some product", "list": "All Deals", // also tried

Google Analytics PDF reports not displaying data

北城以北 提交于 2019-12-04 18:43:59
Since a few days back our custom dashboard reports (scheduled e-mail PDFs) are not showing any data and the layout is broken. There has not been any changes done to the dashboards and they’ve been working for months. When generating and sending the PDF reports manually they show up just fine. The only difference in the reports is that a text that wasn't there before has been added: "All users on your account, regardless of permissions, will soon be able to see who else has access to that account. Learn More"
 Please view attached screenshot (link). Screenshot of broken GA PDF report Does

Phonegap google analytics not tracking at all

落花浮王杯 提交于 2019-12-04 18:36:09
问题 This my main.js file /* Google Analytics */ (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); })(); var _gaq = _gaq || []; function _track(page){ try { _gaq.push(['_setAccount', 'UA-XXXXXXXX-X']); /* But with my correct one */ console.log(

Tracking Anchor Links in Goal Funnels

僤鯓⒐⒋嵵緔 提交于 2019-12-04 18:32:29
On my site I have a form that spans 2 steps each step 1 posts back to the same page and loads the second part of the form. The only difference between step 1 and step 2 in terms of URL is an anchor text in the url e.g. STEP 1 : www.mysite.com/enquiry/ STEP 2 : www.mysite.com/enquiry/#message is it possible to track these in goal funnnels? If not would i have to hardcode some tracking paramater into the GA code? _setAllowAnchor(bool) won't solve your problem; that's a function for allowing Google Analytics to read campaign query strings from the anchor (ie, #utm_medium=cpc .) This can be hard

Is there any code needed in Activity so that ga_autoActivityTracking = true would work for Google Analytics V4

若如初见. 提交于 2019-12-04 18:06:06
问题 In Google Analytics v3, to auto tracking for Activity , we need to have ga_autoActivityTracking flag in manifest.xml. GA code in onStart and onStop Google Analytics SDK for Android v3 public class myTrackedActivity extends Activity { @Override public void onStart() { super.onStart(); ... // The rest of your onStart() code. EasyTracker.getInstance(this).activityStart(this); // Add this method. } @Override public void onStop() { super.onStop(); ... // The rest of your onStop() code. EasyTracker

In-app purchase tracking with Google Analytics iOS SDK

旧时模样 提交于 2019-12-04 18:03:44
问题 I would like to track in-app purchases with the Google Analytics SDK for iOS v2, as indicated in their Ecommerce Tracking guide. I'm currently doing the following after receiving a SKPaymentTransactionStatePurchased transaction update: - (void) trackTransaction:(SKPaymentTransaction*)transaction { NSString *transactionIdentifier = transaction.transactionIdentifier; GAITransaction *gaiTransaction = [GAITransaction transactionWithId:transactionIdentifier withAffiliation:@"App Store"]; SKPayment

Two google-services.json (with different accounts) in one app

∥☆過路亽.° 提交于 2019-12-04 17:36:31
Is it possible, to use two different accounts for two different services of google in an Android app? I want to use Google Analytics with Account customer@gmail.com and Firebase Crashreport with Account developer@gmail.com. I get two google-services.json with different project_info values and can't combine them. The solution for different flavours is not relevant as I understand this, because I want to use 2 configuration files for the same flavour (release). You can't split between projects like this with Analytics and Crash Reporting. Crash Reporting actually depends pretty heavily on

jquery deep linking - how does it effect analytics?

青春壹個敷衍的年華 提交于 2019-12-04 17:21:41
I am looking into using http://www.asual.com/jquery/address/ , but I am wondering how it effects google analytics. Google analytics is a snippet of code at the bottom of pages. I would imagine deep linking would still look like activity on the initial page, not new pages. From what I can see it will look to google analytics like navigating to a new page. Just open e.g. http://www.asual.com/jquery/address/samples/tabs/ and check the requests FF makes (e.g. with Live HTTP Headers ) and you will see that the google analytics fires a request for every tab you switch to. in it's current version 1.3

GA for iOS and custom dimensions

房东的猫 提交于 2019-12-04 17:16:26
We've setup Google Analytics in an iOS app which is sending the vendor identifier to distinguish between users on the reports. Here's what we've done: In Google Analytics we've setup a Custom Dimension as follows: Name: User identifier Scope: User Active: True In the app we add the following in the AppDelegate: [tracker set:[GAIFields customDimensionForIndex:1] value:uuidString]; // uuidString is the device identifier In the logging window I can see that the value of cd1 is the correct value yet our custom report shows no data for the custom dimension. We are using Google Analytics 3.02. Does

google analytics easytracker causes java connection exception

℡╲_俬逩灬. 提交于 2019-12-04 17:02:28
问题 I started using the Google Analytics platform. as of now I am able to connect from my emulator to G.A servers and upload information. problem is, when testing from my Samsung Galaxy S the app is not being able to communicate with the G.A servers. I get the next error: 12-17 17:43:21.924: W/GoogleAnalyticsTracker(20577): Problem with socket or streams. 12-17 17:43:21.924: W/GoogleAnalyticsTracker(20577): java.net.ConnectException: www.google-analytics.com/127.0.0.1:80 - Connection refused 12