event-tracking

Reporting URL of downloads in Data Studio when using Google Analytics 4 automatic enhanced measurement events?

こ雲淡風輕ζ 提交于 2021-02-08 23:36:54
问题 I have setup a new Google Analytics 4 property and have enabled enhanced tracking, which records all downloads automatically. When using Google Data Studio, I can see 'file_download' events (so it's definitely working) and use this data to build my report. I need to create a report that shows which files were downloaded each month for a specific page only. It's really easy to get the total number of downloads which occurred on that page, however, I can't for the life of me find any way to

Firebase attribution tracking

倾然丶 夕夏残阳落幕 提交于 2021-02-07 09:00:57
问题 I added a few networks for attribution tracking in Attribution->Network Settings and added those network SDKs, but how can I see conversions from specific ad network from Firebase? For example first_open . If I go to Attribution-> click first_open -> and then trying to apply filter, there is nothing under Source . I suppose there should be my networks, aren't they? How can I see number of installs from specific ad network on Firebase? 回答1: It sounds like you're doing everything correctly --

Google Analytics Async: Events Tracking Callback?

我怕爱的太早我们不能终老 提交于 2020-01-10 01:03:09
问题 I wish to use event tracking to record clicks on a specific type of link to another website. I am using jQuery, and the code I currently have is: $('a.website').click(function(event) { var href = $(this).attr('href'); try { _gaq.push(['_trackEvent', 'website', 'click', href]); } catch(err) {} }); However, after seeing referrer information from the other site, I don't belive this is accurately tracking the clicks, probably because _gaq.push is asynchronous, and the request has not been

Google Analytics Goal tracking in javascript/ajax

ε祈祈猫儿з 提交于 2020-01-06 07:37:06
问题 I have a javascript/ajax based contact form on a website page. If people click to send the form, I want this click to be registered by Google Analytics. I created a goal for this, for some reason I cannot get it to work. Any help? The code of the form is: <form id="footer_quick_contact_form" name="footer_quick_contact_form" class="quick-contact-form" action="includes/quickcontact.php" method="post"> <div class="form-group"> <input id="form_email" name="form_email" class="form-control" type=

Problems with tracking pixels and Gmail proxy

淺唱寂寞╮ 提交于 2020-01-03 15:31:44
问题 I am trying to implement a custom Tracking Pixel for Emails sent out from wordpress. Thanks to these post: Tracking email with PHP and image Tracking email opens with a real image and especially http://www.phpdevtips.com/2013/06/email-open-tracking-with-php-and-mysql/ I was able to implement the core idea. The email loads the tracking pixel via <img src="https://www.example.com/tracking.php?order_id=1" width="100" height="100" /> and in the tracking.php $graphic_http = 'https://www.example

Google Tag Manager: Eventtracking not working

不问归期 提交于 2020-01-01 18:17:56
问题 I try to track the clicks on all mailto-links on my site using the Tag Manager, but its not working at all. Looking at the network transfer using firebug I can see that nothing is submitted to Google (and of course also nothing appears in my Analytics interface). I have bind the push to the click using jQuery (correctly loaded on my page): $(function() { $("a[href^='mailto:']").bind("click", function() { dataLayer.push({ 'event': 'GAevent', 'eventCategory': 'Mail Link', 'eventAction':

Google Analytics event flow

梦想与她 提交于 2020-01-01 16:29:07
问题 I am trying to use Google Analytics to examine how users progress through my site. The problem is that my site operates entirely upon AJAX. I have set up "events" using: _gaq.push(['_trackEvent', category, action]) These are being recorded by Analytics, but I am unable to view how users progress through each event. In other words, currently I can see that 10 users added a post and that 7 users added a comment to a post. What I want to see is how many of the users who added a post then also

GA Event Tracking + onClick="document.location.href='

﹥>﹥吖頭↗ 提交于 2019-12-25 11:25:14
问题 The developer who made a site we're working on has buttons linking to PDF downloads using: <button onClick="document.location.href='doc.pdf'"> Doc Name </button> However, we also need to track events for these (we don't want to inflate pageviews with PDF downloads), using: <button onClick="_gaq.push(['_trackEvent', 'PDFs', 'Download', 'Doc Name']);""> Doc Name </button> So, the issue is, how can I do GA event tracking without having the two requisite 'onClick's conflicting? I was thinking

Google Analytics Event Tracking - Not working for a download link

醉酒当歌 提交于 2019-12-24 18:51:56
问题 I just finished working on a plugin for Sketch and I created a simple landing page for users to download the plugin. I want to use Google Analytics event tracking to track the downloads, but the event tracking is not working and I can't seem to figure out why. Here is what the link looks like: <a href="downloads/colorspark.zip" download onClick="ga('send', 'event', 'Downloads', 'download', 'ColorSpark for Sketch');">Download</a> Does anyone see what I'm doing wrong? Do I need to add any other

Google Analytics with jQuery - show pathname in label

不问归期 提交于 2019-12-24 02:02:37
问题 I've got as far as creating the tracking and it works great like so: $('a.external').click(function(){ _gaq.push(['_trackEvent', 'Exit Links', 'Click', $(this).attr('href')]); }); <a href="http://example.com" class="external">example</a> This comes through to analytics correctly with the href as the label. What I'm wanting to do is be able to tag the current page they are on as well. So we can work out which page they were on when they clicked the link to go to an external page. Something