David Wells

Results 183 comments of David Wells

Looks like a similar issue as https://github.com/DavidWells/analytics/issues/147#issuecomment-784425598 Double check your `dataLayer` is being pushed to and that your google tag manager is wired up correctly in GTM. https://getanalytics.io/plugins/google-tag-manager/#configuring-gtm

Yeah, it's dependant on how you wire things up in google tag manager, and everyone has a different flavor of that. I found this post helpful when I was setting...

You can have a plugin send data anywhere you wish 😃 See https://github.com/DavidWells/analytics#community-plugins & https://www.npmjs.com/package/@standardorg/analytics-fetch it's a tiny plugin to send data to your own backend. In your case, this...

googleTagManager pushs events to the `dataLayer`. See https://github.com/DavidWells/analytics/blob/master/packages/analytics-plugin-google-tag-manager/src/browser.js#L91 Debug/Verify your datalayer contains the fired events. See https://infotrust.com/articles/google-tag-manager-debugging-quick-tips/ Its up to the google tag manager rules you setup as to how...

Looks like there are no options for this plugin. https://github.com/DavidWells/analytics/blob/master/packages/analytics-plugin-do-not-track/src/index.js It just uses the browser do not track settings. So I guess no types are needed? 😃

Not sure how to add types here for this. Maybe this belongs in https://github.com/DefinitelyTyped/DefinitelyTyped ?

Hey @JuroOravec sounds great! > Does that fall within the scope of the project? Yeah. Happy to see more framework helpers. > What would be the best course of action?...

Thanks for the PR as always 😃 I'm currently stuck on the issue where types can be different between server and client implementations but this isn't supported in typescript (or...

Thanks for the report! This is odd indeed. Do you know which versions / browsers? Followup Q: when you say " iOS devices" you know mean react native apps do...

Yeah I think you are right The property is usually `url` https://github.com/DavidWells/analytics/blob/master/packages/analytics-core/src/modules/page.js#L62 but in reality, you can pass any arbitrary values to the `page` call Does using `href` work for...