google-analytics

Google Analytics regex exclude a phrase

眉间皱痕 提交于 2020-05-17 12:52:50
问题 I'm creating a content grouping with the following URLs: /my-category/something /my-category/somethingelse /my-category/product1-brand-color /my-category/product2-brand-color How to create a RegEx to group /my-category/ pages but exclude everything that has "brand"? 回答1: Google Analytics doesn't support negative lookahead expressions. Instead, create 2 (or more) filters: The first filter to include your regex using the "Only Show" dropdown The second filter using the "Don't Show" dropdown

Google Analytics regex exclude a phrase

廉价感情. 提交于 2020-05-17 12:51:01
问题 I'm creating a content grouping with the following URLs: /my-category/something /my-category/somethingelse /my-category/product1-brand-color /my-category/product2-brand-color How to create a RegEx to group /my-category/ pages but exclude everything that has "brand"? 回答1: Google Analytics doesn't support negative lookahead expressions. Instead, create 2 (or more) filters: The first filter to include your regex using the "Only Show" dropdown The second filter using the "Don't Show" dropdown

Google Analytics regex exclude a phrase

眉间皱痕 提交于 2020-05-17 12:50:53
问题 I'm creating a content grouping with the following URLs: /my-category/something /my-category/somethingelse /my-category/product1-brand-color /my-category/product2-brand-color How to create a RegEx to group /my-category/ pages but exclude everything that has "brand"? 回答1: Google Analytics doesn't support negative lookahead expressions. Instead, create 2 (or more) filters: The first filter to include your regex using the "Only Show" dropdown The second filter using the "Don't Show" dropdown

Analytics.js callback executed before library is loaded

老子叫甜甜 提交于 2020-05-17 07:08:06
问题 I'm facing a very weird issue with analytics.js. Basically, I have a basic implementation at the top of the page, and inside another JS file that is loaded right after the analytics.js is downloaded and initialized I have a function that validates if ga has been enabled loaded. In that function I get the ga function in a local variable named gaFn , and I use the callback function of the analytics library to make sure the analytics library has been loaded to use the tracker, my problem is that

Does play console show the revenue for test subscriptions and test in-app purchases?

£可爱£侵袭症+ 提交于 2020-05-17 06:24:13
问题 I have published an android app in internal test track to test user subscriptions. I also linked my Firebase project to it to keep control of the subscriptions. There is also a tester with licence to test the subscription with a fake card. The tester can successfully subscribe for monthly payments and the google play app in the phone confirms the subscription. The user info is also shown inside the Firebase project after subscription. But the revenue is still showing nothing in play console

Angular: Dynamically loading Google Analytics?

折月煮酒 提交于 2020-05-16 03:21:20
问题 I'm using Google Analytics Global site tag (gtag.js) However, I can't directly insert the tag in index.html because the trackingID is dynamically loaded over network, so I need to wait to get the trackingID before loading Google Analytics. For this, I created a service. @Injectable() export class HelpersService { constructor() {} static loadGoogleAnalytics(trackingID: string): void { document.write('' + '<script async src=\'https://www.googletagmanager.com/gtag/js?id=' + trackingID + '\'><

Tracking submissions on MailChimp embedded form

天大地大妈咪最大 提交于 2020-05-15 06:26:25
问题 I'm attempting to track submissions on a embedded MailChimp form. The problem is that no form submit event is fired when the form is submitted. I think this has to do with the JQuery being used to validate the input. Here's the embed code for the form: <!-- Begin MailChimp Signup Form --> <link href="//cdn-images.mailchimp.com/embedcode/classic-10_7.css" rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif

Google Analytics exclude empty custom variable in a custom report

爷,独闯天下 提交于 2020-05-14 14:40:11
问题 I have a custom variable set for all visitors; for our registered users it's some value, for unregistered users, it's empty. I can find unregistered users in an advanced segment using the settings Exclude Custom Variable (Value 02) Matching Regexp .+ -- works brilliantly. But I need a report of unregistered visitors for a dashboard, and tried to do the same thing with a filter. I have a metric of Visits and a dimension of something all vistors will have (e.g. Browser). My filter is identical

How to run Google Embed API Server-side Authorization with PHP?

社会主义新天地 提交于 2020-05-11 17:33:11
问题 I am trying to run the Google Embed API Server-side Authorization demo, here: https://ga-dev-tools.appspot.com/embed-api/server-side-authorization/, but using PHP instead of Python for Step 3 (Using the JSON key data to request an access token). I have installed the Google API PHP client: https://github.com/google/google-api-php-client. I have created a Service Account (https://console.developers.google.com), enabled Analytics API for it, downloaded the JSON key file, and copied that to my

How to run Google Embed API Server-side Authorization with PHP?

淺唱寂寞╮ 提交于 2020-05-11 17:33:06
问题 I am trying to run the Google Embed API Server-side Authorization demo, here: https://ga-dev-tools.appspot.com/embed-api/server-side-authorization/, but using PHP instead of Python for Step 3 (Using the JSON key data to request an access token). I have installed the Google API PHP client: https://github.com/google/google-api-php-client. I have created a Service Account (https://console.developers.google.com), enabled Analytics API for it, downloaded the JSON key file, and copied that to my