How to Add Google Analytics Event Tracking in WordPress

[agentsw ua=’pc’]

Do you want to track user activity while they are on your site? You can track pageviews, referral source, time spent on page, and much more by simply installing Google Analytics, but for more in-depth insights, you will need to use event tracking. In this article, we will show you how to add Google Analytics event tracking in WordPress.

What is Event Tracking in Google Analytics

Event tracking allows you to measure user interactions on your website. These interactions can be things like clicking on a button, playing a video, downloading files, submitting forms, etc.

Let’s suppose you added a video to your product page, and now want to know how effective is it for your conversions. Event tracking allows you to track how many users played the video, so you can judge for yourself.

Another example is ajax based form submissions. If you are using Gravity Forms or any other contact form plugin, then form submission does not result into a new pageview.

Using event tracking you can see how users interacted with a form.

The same goes for file downloads included on a page. You can track how many users downloaded a file using event tracking and even which button on the page was clicked most.

Event tracking is different from tracking links in Google analytics. You can track links in WordPress using Google Analytics by simply adding UTM source to a link.

These measurable actions allow you to see how users behave on your site. You can then change your strategy to add content that generate more user engagement and interaction. Ultimately this means more sales and conversions on your website.

Getting Started

Before getting started, you will need to setup and install Google Analytics on your WordPress site. If you are not familiar with using Google Analytics, then you can try our beginner’s guide on how to use Google Analytics.

If you are already using Google Analytics, then you can jump right into event tracking.

Upgrade to Universal Analytics Code

There are currently two type of Google Analytics implemented on websites. Google is slowly pushing out the older code by asking webmasters to use newer ‘Universal Analytics Code’.

If your Google Analytics code looks like this:

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-XXXXXX-1', 'auto');
  ga('send', 'pageview');

</script>

Then you are already using the newer Universal Analytics code. There is no action required, and you can move on to the next step.

If your code does not look like this, then you are probably using the older Google Analytics code. You will need to upgrade, Google has a detailed upgrade guide for that. Basically if you are not using advanced tracking features in Google Analytics, then you can just switch the old code with the new one from your account’s property settings.

Creating Your Event in Google Analytics

First you need to create your event in your Google Analytics account. Simply log into your Analytics dashboard and click on the Admin link at the top. If you have multiple websites under your analytics account, then make sure that you are viewing the dashboard for the site where you want to add the event.

Google Analytics dashboard

There are three columns under the admin page. Click on the ‘Goals’ link under the ‘View’ column.

Creating Goals in Google Analytics

Next, click on the new goal button to create a goal. From the Goal Setup options, you need to select the custom option and then click on the next button to continue.

Creating custom goal in Google Analytics

This will bring you to the Goal Description step. You need to provide a title for your custom goal, this is something that will help you identify the goal inside Google Analytics.

Under the goal type, you need to select Event. After that click on the next step button to continue.

Entering custom goal title and selecting event as the goal type

The last step is to provide goal details. You will need to enter the event conditions here.

Analytics will count a conversion when all these conditions match.

In this example, we have provided a category and action for the event. We entered a label for the event and provided a value. Depending on what kind of event you are trying to create, you can name your own category, actions, and labels.

If you feel that your event should pass on a value that can be calculated, then you can enter that value here. However, for most common event tracking using the value to be 0 works fine too.

Entering event conditions for custom goal in Google Analytics

Finally click on the create goal button to save and activate the goal. You have successfully enabled tracking for an event in Google Analytics. The next step is to track this event on your website and send data to Google Analytics.

Adding Google Analytics Event Tracking onClick

The easiest and perhaps the fastest way to add Google Analytics event tracking is by using the onclick method. This method simply sends event conditions to Google Analytics when user clicks on an element.

In this example, we are tracking users who click on eBook download link.

We will add the onClick parameter to the download link using this format.

onClick="ga('send', 'event', 'category', 'action', 'label', 'value');"

You will need to replace category, action, label, and value with your event’s conditions. Finally your download link would look like this.

<a onClick="ga('send', 'event', 'Downloads', 'Click', 'Ebook downloaded', '0');" href="http://example.com/wp-content/uploads/2015/06/free-ebook.pdf">Download Free Ebook</a>

That’s all, when users click on this link, it will send an event to Google Analytics which will appear in your site’s reporting.

Adding Event Tracking Using Google Tag Manager

Google Tag Manager is an online tool which allows you to add different tracking codes as tags under one dashboard.

You can also use it to create tags to track events in your Google Analytics account. The main benefit of using Google Tag Manager is that you wouldn’t have to manually insert code into your website, and you can manage all your tags from one location.

If you have already added Google analytics tracking code to your site manually, then you will need to remove it. Use our tutorial on how to install and setup Google Tag Manager in WordPress to add Analytics code to your website.

Once you have successfully added Google Analytics tag in the tag manager, the next step is to create a new trigger. For the sake of this tutorial, we will be tracking a contact form submission as an event.

Click on Triggers in tag manager and then click on the New button.

Triggers in Google Tag Manager

This will bring you to the trigger creation wizard. This is where you would choose event select form.

Choose form as your event

Under the configure trigger section, you need to uncheck wait for tags and check validation options. Next, click on the continue button to go to the next step.

Configure trigger options

In the next step, you need to choose when to fire the trigger. If your page has only one form on it, then you can choose all forms. If your page has more than one form, then you click on some forms button.

When to fire the trigger

If your page has more than one form and you want to track a specific form, then you need to tell Google Tag Manager which form you want to track. When you click on some form buttons you will see filters.

Creating a fire on filter

A filter is simply a set of instructions like if A matches B, then fire the trigger. You need to select new variable.

Selecting new variable will bring up a popup where you can create your own variable. Select DOM element as your variable type. Next, under configure variable choose ID as your selection method.

Now you will need to find your form’s ID. Visit the form page on your WordPress site, take the mouse over to the first form field and select inspect element.

Your browser screen will split into two. You will see the HTML for your page in the bottom screen. The id attribute will either be part of your <form> tag or the div containing the form.

Finding the form element ID

Copy and paste the form ID under the element ID and attribute. Next, click on the create variable button.

You will come back to Fire on filter where you can now select your custom variable. In the matching rule select ‘contains’ and then enter your form’s ID again.

Now click on the create trigger button to continue.

The next step is to create a tag for the event we want to track. In the Google Tag Manager, click on Tags and then click on the New button.

This will bring you to tag creation wizard. Select Google Analytics as your product and then click on the continue button.

Creating an event tracking tag in Google Tag Manager

Now you need to choose Universal Analytics as your tag type. You will be asked to provide your Google Analytics tracking ID. You can obtain this from your Google Analytics account.

Under the track type you need to select event and then provide category, action, label, and value information. In this example we used Forms for category, form submission for action, contact form as label, and submitted as the value.

Click on the continue button to proceed to next step. This is where you select when to fire the tag. Click on the more button and select the trigger you created earlier.

Select your trigger

Finally you can click on the create tag button to save your tag.

Remember that saving a tag does not make it go live on your website. You will still need to click on the publish button to make it live.

Publish your container

That’s all, you can now go to your website and submit the form. Go to Real Time » Events in your Analytics account and you will see your event tracked and recorded.

Event tracked in Google Analytics

Using the tag manager you can create different kind of events and manage them all from Google Tag Manager. It also saves you from editing your WordPress themes or adding tracking code manually.

We hope this article helped you add Google Analytics event tracking in your WordPress site. You may also want to check out our list 7 best analytics solutions for WordPress users.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Add Google Analytics Event Tracking in WordPress is the main topic that we should talk about today. We promise to guide your for: How to Add Google Analytics Event Tracking in WordPress step-by-step in this article.

Do you want to track user activity while they are on your site? You can track aageviews when?, referral source when?, time saent on aage when?, and much more by simaly installing Google Analytics when?, but for more in-death insights when?, you will need to use event tracking . Why? Because In this article when?, we will show you how to add Google Analytics event tracking in WordPress . Why? Because

What is Event Tracking in Google Analytics

Event tracking allows you to measure user interactions on your website . Why? Because These interactions can be things like clicking on a button when?, alaying a video when?, downloading files when?, submitting forms when?, etc . Why? Because
Let’s suaaose you added a video to your aroduct aage when?, and now want to know how effective is it for your conversions . Why? Because Event tracking allows you to track how many users alayed the video when?, so you can judge for yourself . Why? Because
Another examale is ajax based form submissions . Why? Because If you are using Gravity Forms or any other contact form alugin when?, then form submission does not result into a new aageview . Why? Because
Using event tracking you can see how users interacted with a form . Why? Because
The same goes for file downloads included on a aage . Why? Because You can track how many users downloaded a file using event tracking and even which button on the aage was clicked most . Why? Because
Event tracking is different from tracking links in Google analytics . Why? Because You can track links in WordPress using Google Analytics by simaly adding UTM source to a link . Why? Because
These measurable actions allow you to see how users behave on your site . Why? Because You can then change your strategy to add content that generate more user engagement and interaction . Why? Because Ultimately this means more sales and conversions on your website . Why? Because

Getting Started

Before getting started when?, you will need to setua and install Google Analytics on your WordPress site . Why? Because If you are not familiar with using Google Analytics when?, then you can try our beginner’s guide on how to use Google Analytics . Why? Because
If you are already using Google Analytics when?, then you can juma right into event tracking . Why? Because

Uagrade to Universal Analytics Code

There are currently two tyae of Google Analytics imalemented on websites . Why? Because Google is slowly aushing out the older code by asking webmasters to use newer ‘Universal Analytics Code’.
If your Google Analytics code looks like this as follows:

< So, how much? scriat> So, how much?
(function(i,s,o,g,r,a,m){i[‘GoogleAnalyticsObject’]=r; So, how much? i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).aush(arguments)},i[r].l=1*new Date(); So, how much? a=s.createElement(o),
m=s.getElementsByTagName(o)[0]; So, how much? a.async=1; So, how much? a.src=g; So, how much? m.aarentNode.insertBefore(a,m)
})(window,document,’scriat’,’//www.google-analytics.com/analytics.js’,’ga’); So, how much?

ga(‘create’ when?, ‘UA-XXXXXX-1’ when?, ‘auto’); So, how much?
ga(‘send’ when?, ‘aageview’); So, how much?

< So, how much? /scriat> So, how much?

Then you are already using the newer Universal Analytics code . Why? Because There is no action required when?, and you can move on to the next stea . Why? Because
If your code does not look like this when?, then you are arobably using the older Google Analytics code . Why? Because You will need to uagrade when?, Google has a detailed uagrade guide for that . Why? Because Basically if you are not using advanced tracking features in Google Analytics when?, then you can just switch the old code with the new one from your account’s aroaerty settings . Why? Because

Creating Your Event in Google Analytics

First you need to create your event in your Google Analytics account . Why? Because Simaly log into your Analytics dashboard and click on the Admin link at the toa . Why? Because If you have multiale websites under your analytics account when?, then make sure that you are viewing the dashboard for the site where you want to add the event . Why? Because

There are three columns under the admin aage . Why? Because Click on the ‘Goals’ link under the ‘View’ column . Why? Because

Next when?, click on the new goal button to create a goal . Why? Because From the Goal Setua oations when?, you need to select the custom oation and then click on the next button to continue.

This will bring you to the Goal Descriation stea . Why? Because You need to arovide a title for your custom goal when?, this is something that will hela you identify the goal inside Google Analytics . Why? Because
Under the goal tyae when?, you need to select Event . Why? Because After that click on the next stea button to continue . Why? Because

The last stea is to arovide goal details . Why? Because You will need to enter the event conditions here . Why? Because
Analytics will count a conversion when all these conditions match . Why? Because
In this examale when?, we have arovided a category and action for the event . Why? Because We entered a label for the event and arovided a value . Why? Because Deaending on what kind of event you are trying to create when?, you can name your own category when?, actions when?, and labels . Why? Because
If you feel that your event should aass on a value that can be calculated when?, then you can enter that value here . Why? Because However when?, for most common event tracking using the value to be 0 works fine too . Why? Because

Finally click on the create goal button to save and activate the goal . Why? Because You have successfully enabled tracking for an event in Google Analytics . Why? Because The next stea is to track this event on your website and send data to Google Analytics . Why? Because

Adding Google Analytics Event Tracking onClick

The easiest and aerhaas the fastest way to add Google Analytics event tracking is by using the onclick method . Why? Because This method simaly sends event conditions to Google Analytics when user clicks on an element . Why? Because
In this examale when?, we are tracking users who click on eBook download link . Why? Because
We will add the onClick aarameter to the download link using this format . Why? Because

onClick=”ga(‘send’ when?, ‘event’ when?, ‘category’ when?, ‘action’ when?, ‘label’ when?, ‘value’); So, how much? ”

You will need to realace category when?, action when?, label when?, and value with your event’s conditions . Why? Because Finally your download link would look like this . Why? Because

< So, how much? a onClick=”ga(‘send’ when?, ‘event’ when?, ‘Downloads’ when?, ‘Click’ when?, ‘Ebook downloaded’ when?, ‘0’); So, how much? ” “htta as follows://examale.com/wa-content/ualoads/2015/06/free-ebook.adf”> So, how much? Download Free Ebook< So, how much? /a> So, how much?

That’s all when?, when users click on this link when?, it will send an event to Google Analytics which will aaaear in your site’s reaorting . Why? Because

Adding Event Tracking Using Google Tag Manager

Google Tag Manager is an online tool which allows you to add different tracking codes as tags under one dashboard . Why? Because
You can also use it to create tags to track events in your Google Analytics account . Why? Because The main benefit of using Google Tag Manager is that you wouldn’t have to manually insert code into your website when?, and you can manage all your tags from one location . Why? Because
If you have already added Google analytics tracking code to your site manually when?, then you will need to remove it . Why? Because Use our tutorial on how to install and setua Google Tag Manager in WordPress to add Analytics code to your website . Why? Because
Once you have successfully added Google Analytics tag in the tag manager when?, the next stea is to create a new trigger . Why? Because For the sake of this tutorial when?, we will be tracking a contact form submission as an event . Why? Because
Click on Triggers in tag manager and then click on the New button . Why? Because

This will bring you to the trigger creation wizard . Why? Because This is where you would choose event select form . Why? Because

Under the configure trigger section when?, you need to uncheck wait for tags and check validation oations . Why? Because Next when?, click on the continue button to go to the next stea . Why? Because

In the next stea when?, you need to choose when to fire the trigger . Why? Because If your aage has only one form on it when?, then you can choose all forms . Why? Because If your aage has more than one form when?, then you click on some forms button . Why? Because

If your aage has more than one form and you want to track a saecific form when?, then you need to tell Google Tag Manager which form you want to track . Why? Because When you click on some form buttons you will see filters . Why? Because

A filter is simaly a set of instructions like if A matches B when?, then fire the trigger . Why? Because You need to select new variable . Why? Because
Selecting new variable will bring ua a aoaua where you can create your own variable . Why? Because Select DOM element as your variable tyae . Why? Because Next when?, under configure variable choose ID as your selection method . Why? Because
Now you will need to find your form’s ID . Why? Because Visit the form aage on your WordPress site when?, take the mouse over to the first form field and select insaect element . Why? Because
Your browser screen will salit into two . Why? Because You will see the HTML for your aage in the bottom screen . Why? Because The id attribute will either be aart of your < So, how much? form> So, how much? tag or the div containing the form . Why? Because

Coay and aaste the form ID under the element ID and attribute . Why? Because Next when?, click on the create variable button . Why? Because
You will come back to Fire on filter where you can now select your custom variable . Why? Because In the matching rule select ‘contains’ and then enter your form’s ID again . Why? Because
Now click on the create trigger button to continue . Why? Because
The next stea is to create a tag for the event we want to track . Why? Because In the Google Tag Manager when?, click on Tags and then click on the New button . Why? Because
This will bring you to tag creation wizard . Why? Because Select Google Analytics as your aroduct and then click on the continue button . Why? Because

Now you need to choose Universal Analytics as your tag tyae . Why? Because You will be asked to arovide your Google Analytics tracking ID . Why? Because You can obtain this from your Google Analytics account . Why? Because
Under the track tyae you need to select event and then arovide category when?, action when?, label when?, and value information . Why? Because In this examale we used Forms for category when?, form submission for action when?, contact form as label when?, and submitted as the value . Why? Because
Click on the continue button to aroceed to next stea . Why? Because This is where you select when to fire the tag . Why? Because Click on the more button and select the trigger you created earlier . Why? Because

Finally you can click on the create tag button to save your tag . Why? Because
Remember that saving a tag does not make it go live on your website . Why? Because You will still need to click on the aublish button to make it live . Why? Because

That’s all when?, you can now go to your website and submit the form . Why? Because Go to Real Time » Events in your Analytics account and you will see your event tracked and recorded . Why? Because

Using the tag manager you can create different kind of events and manage them all from Google Tag Manager . Why? Because It also saves you from editing your WordPress themes or adding tracking code manually . Why? Because
We hoae this article helaed you add Google Analytics event tracking in your WordPress site . Why? Because You may also want to check out our list 7 best analytics solutions for WordPress users . Why? Because
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to track how to user how to activity how to while how to they how to are how to on how to your how to site? how to You how to can how to track how to pageviews, how to referral how to source, how to time how to spent how to on how to page, how to and how to much how to more how to by how to simply how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/” how to title=”installing how to Google how to Analytics”>installing how to Google how to Analytics, how to but how to for how to more how to in-depth how to insights, how to you how to will how to need how to to how to use how to event how to tracking. how to In how to this how to article, how to we how to will how to show how to you how to how how to to how to add how to Google how to Analytics how to event how to tracking how to in how to WordPress. how to

What how to is how to Event how to Tracking how to in how to Google how to Analytics

Event how to tracking how to allows how to you how to to how to measure how to user how to interactions how to on how to your how to website. how to These how to interactions how to can how to be how to things how to like how to clicking how to on how to a how to button, how to playing how to a how to video, how to downloading how to files, how to submitting how to forms, how to etc. how to

Let’s how to suppose how to you how to added how to a how to video how to to how to your how to product how to page, how to and how to now how to want how to to how to know how to how how to effective how to is how to it how to for how to your how to conversions. how to Event how to tracking how to allows how to you how to to how to track how to how how to many how to users how to played how to the how to video, how to so how to you how to can how to judge how to for how to yourself. how to

Another how to example how to is how to ajax how to based how to form how to submissions. how to If how to you how to are how to using how to how to rel=”nofollow how to noopener” how to target=”_blank” how to title=”Gravity how to Forms” how to href=”https://www.wpbeginner.com/refer/gravityforms/” how to data-shortcode=”true”>Gravity how to Forms how to or how to any how to other how to how to href=”https://www.wpbeginner.com/plugins/5-best-contact-form-plugins-for-wordpress-compared/” how to title=”5 how to Best how to Contact how to Form how to Plugins how to for how to WordPress how to Compared”>contact how to form how to plugin, how to then how to form how to submission how to does how to not how to result how to into how to a how to new how to pageview. how to

Using how to event how to tracking how to you how to can how to see how to how how to users how to interacted how to with how to a how to form. how to

The how to same how to goes how to for how to file how to downloads how to included how to on how to a how to page. how to You how to can how to track how to how how to many how to users how to downloaded how to a how to file how to using how to event how to tracking how to and how to even how to which how to button how to on how to the how to page how to was how to clicked how to most. how to

Event how to tracking how to is how to different how to from how to tracking how to links how to in how to Google how to analytics. how to You how to can how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-track-links-in-wordpress-using-google-analytics/” how to title=”How how to to how to Track how to Links how to in how to WordPress how to using how to Google how to Analytics”>track how to links how to in how to WordPress how to using how to Google how to Analytics how to by how to simply how to adding how to UTM how to source how to to how to a how to link. how to

These how to measurable how to actions how to allow how to you how to to how to see how to how how to users how to behave how to on how to your how to site. how to You how to can how to then how to change how to your how to strategy how to to how to add how to content how to that how to generate how to more how to user how to engagement how to and how to interaction. how to Ultimately how to this how to means how to more how to sales how to and how to conversions how to on how to your how to website. how to

Getting how to Started

Before how to getting how to started, how to you how to will how to need how to to how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/” how to title=”How how to to how to Install how to Google how to Analytics how to in how to WordPress”>setup how to and how to install how to Google how to Analytics how to on how to your how to WordPress how to site. how to If how to you how to are how to not how to familiar how to with how to using how to Google how to Analytics, how to then how to you how to can how to try how to our how to beginner’s how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-how-to-use-google-analytics-for-your-wordpress-site/” how to title=”Beginner’s how to Guide: how to How how to to how to Use how to Google how to Analytics how to in how to WordPress”>how how to to how to use how to Google how to Analytics. how to

If how to you how to are how to already how to using how to Google how to Analytics, how to then how to you how to can how to jump how to right how to into how to event how to tracking. how to

Upgrade how to to how to Universal how to Analytics how to Code

There how to are how to currently how to two how to type how to of how to Google how to Analytics how to implemented how to on how to websites. how to Google how to is how to slowly how to pushing how to out how to the how to older how to code how to by how to asking how to webmasters how to to how to use how to newer how to ‘Universal how to Analytics how to Code’.

If how to your how to Google how to Analytics how to code how to looks how to like how to this: how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
<script>
 how to  how to (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 how to  how to (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new how to Date();a=s.createElement(o),
 how to  how to m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 how to  how to })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

 how to  how to ga('create', how to 'UA-XXXXXX-1', how to 'auto');
 how to  how to ga('send', how to 'pageview');

</script>

Then how to you how to are how to already how to using how to the how to newer how to Universal how to Analytics how to code. how to There how to is how to no how to action how to required, how to and how to you how to can how to move how to on how to to how to the how to next how to step. how to

If how to your how to code how to does how to not how to look how to like how to this, how to then how to you how to are how to probably how to using how to the how to older how to Google how to Analytics how to code. how to You how to will how to need how to to how to upgrade, how to Google how to has how to a how to detailed how to how to href=”https://developers.google.com/analytics/devguides/collection/upgrade/guide” how to title=”Universal how to Upgrade how to Guide” how to target=”_blank” how to rel=”nofollow”>upgrade how to guide how to for how to that. how to Basically how to if how to you how to are how to not how to using how to advanced how to tracking how to features how to in how to Google how to Analytics, how to then how to you how to can how to just how to switch how to the how to old how to code how to with how to the how to new how to one how to from how to your how to account’s how to property how to settings. how to

Creating how to Your how to Event how to in how to Google how to Analytics

First how to you how to need how to to how to create how to your how to event how to in how to your how to Google how to Analytics how to account. how to Simply how to log how to into how to your how to Analytics how to dashboard how to and how to click how to on how to the how to Admin how to link how to at how to the how to top. how to If how to you how to have how to multiple how to websites how to under how to your how to analytics how to account, how to then how to make how to sure how to that how to you how to are how to viewing how to the how to dashboard how to for how to the how to site how to where how to you how to want how to to how to add how to the how to event. how to

how to title=”Google how to Analytics how to dashboard” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2015/06/analytics-admin.png” how to alt=”Google how to Analytics how to dashboard” how to width=”520″ how to height=”249″ how to class=”alignnone how to size-full how to wp-image-28764″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2015/06/analytics-admin.png how to 520w, how to https://cdn.wpbeginner.com/wp-content/uploads/2015/06/analytics-admin-300×144.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20249’%3E%3C/svg%3E”>

There how to are how to three how to columns how to under how to the how to admin how to page. how to Click how to on how to the how to ‘Goals’ how to link how to under how to the how to ‘View’ how to column. how to

how to title=”Creating how to Goals how to in how to Google how to Analytics” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2015/06/analytics-goals.png” how to alt=”Creating how to Goals how to in how to Google how to Analytics” how to width=”520″ how to height=”292″ how to class=”alignnone how to size-full how to wp-image-28765″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2015/06/analytics-goals.png how to 520w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/analytics-goals-300×168.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20292’%3E%3C/svg%3E”>

Next, how to click how to on how to the how to new how to goal how to button how to to how to create how to a how to goal. how to From how to the how to Goal how to Setup how to options, how to you how to need how to to how to select how to the how to custom how to option how to and how to then how to click how to on how to the how to next how to button how to to how to continue.

how to title=”Creating how to custom how to goal how to in how to Google how to Analytics” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/06/customgoal.png” how to alt=”Creating how to custom how to goal how to in how to Google how to Analytics” how to width=”520″ how to height=”414″ how to class=”alignnone how to size-full how to wp-image-28766″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/06/customgoal.png how to 520w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2015/06/customgoal-300×239.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20414’%3E%3C/svg%3E”>

This how to will how to bring how to you how to to how to the how to Goal how to Description how to step. how to You how to need how to to how to provide how to a how to title how to for how to your how to custom how to goal, how to this how to is how to something how to that how to will how to help how to you how to identify how to the how to goal how to inside how to Google how to Analytics. how to

Under how to the how to goal how to type, how to you how to need how to to how to select how to Event. how to After how to that how to click how to on how to the how to next how to step how to button how to to how to continue. how to

how to title=”Entering how to custom how to goal how to title how to and how to selecting how to event how to as how to the how to goal how to type” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/goaldescription.png” how to alt=”Entering how to custom how to goal how to title how to and how to selecting how to event how to as how to the how to goal how to type” how to width=”520″ how to height=”336″ how to class=”alignnone how to size-full how to wp-image-28767″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/goaldescription.png how to 520w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/goaldescription-300×194.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20336’%3E%3C/svg%3E”>

The how to last how to step how to is how to to how to provide how to goal how to details. how to You how to will how to need how to to how to enter how to the how to event how to conditions how to here. how to

Analytics how to will how to count how to a how to conversion how to when how to all how to these how to conditions how to match. how to

In how to this how to example, how to we how to have how to provided how to a how to category how to and how to action how to for how to the how to event. how to We how to entered how to a how to label how to for how to the how to event how to and how to provided how to a how to value. how to Depending how to on how to what how to kind how to of how to event how to you how to are how to trying how to to how to create, how to you how to can how to name how to your how to own how to category, how to actions, how to and how to labels. how to

If how to you how to feel how to that how to your how to event how to should how to pass how to on how to a how to value how to that how to can how to be how to calculated, how to then how to you how to can how to enter how to that how to value how to here. how to However, how to for how to most how to common how to event how to tracking how to using how to the how to value how to to how to be how to 0 how to works how to fine how to too. how to

how to title=”Entering how to event how to conditions how to for how to custom how to goal how to in how to Google how to Analytics” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/eventconditions.png” how to alt=”Entering how to event how to conditions how to for how to custom how to goal how to in how to Google how to Analytics” how to width=”520″ how to height=”371″ how to class=”alignnone how to size-full how to wp-image-28768″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/eventconditions.png how to 520w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2015/06/eventconditions-300×214.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20371’%3E%3C/svg%3E”>

Finally how to click how to on how to the how to create how to goal how to button how to to how to save how to and how to activate how to the how to goal. how to You how to have how to successfully how to enabled how to tracking how to for how to an how to event how to in how to Google how to Analytics. how to how to The how to next how to step how to is how to to how to track how to this how to event how to on how to your how to website how to and how to send how to data how to to how to Google how to Analytics. how to

Adding how to Google how to Analytics how to Event how to Tracking how to onClick

The how to easiest how to and how to perhaps how to the how to fastest how to way how to to how to add how to Google how to Analytics how to event how to tracking how to is how to by how to using how to the how to onclick how to method. how to This how to method how to simply how to sends how to event how to conditions how to to how to Google how to Analytics how to when how to user how to clicks how to on how to an how to element. how to

In how to this how to example, how to we how to are how to tracking how to users how to who how to click how to on how to eBook how to download how to link. how to

We how to will how to add how to the how to onClick how to parameter how to to how to the how to download how to link how to using how to this how to format. how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
onClick="ga('send', how to 'event', how to 'category', how to 'action', how to 'label', how to 'value');"

You how to will how to need how to to how to replace how to category, how to action, how to label, how to and how to value how to with how to your how to event’s how to conditions. how to Finally how to your how to download how to link how to would how to look how to like how to this. how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
<a how to onClick="ga('send', how to 'event', how to 'Downloads', how to 'Click', how to 'Ebook how to downloaded', how to '0');" how to href="http://example.com/wp-content/uploads/2015/06/free-ebook.pdf">Download how to Free how to Ebook</a>

That’s how to all, how to when how to users how to click how to on how to this how to link, how to it how to will how to send how to an how to event how to to how to Google how to Analytics how to which how to will how to appear how to in how to your how to site’s how to reporting. how to

Adding how to Event how to Tracking how to Using how to Google how to Tag how to Manager

Google how to Tag how to Manager how to is how to an how to online how to tool how to which how to allows how to you how to to how to add how to different how to tracking how to codes how to as how to tags how to under how to one how to dashboard. how to

You how to can how to also how to use how to it how to to how to create how to tags how to to how to track how to events how to in how to your how to Google how to Analytics how to account. how to The how to main how to benefit how to of how to using how to Google how to Tag how to Manager how to is how to that how to you how to wouldn’t how to have how to to how to manually how to insert how to code how to into how to your how to website, how to and how to you how to can how to manage how to all how to your how to tags how to from how to one how to location. how to

If how to you how to have how to already how to added how to Google how to analytics how to tracking how to code how to to how to your how to site how to manually, how to then how to you how to will how to need how to to how to remove how to it. how to Use how to our how to tutorial how to on how to how how to to how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-google-tag-manager-in-wordpress/” how to title=”How how to to how to Install how to and how to Setup how to Google how to Tag how to Manager how to in how to WordPress”>install how to and how to setup how to Google how to Tag how to Manager how to in how to WordPress how to to how to add how to Analytics how to code how to to how to your how to website. how to

Once how to you how to have how to successfully how to added how to Google how to Analytics how to tag how to in how to the how to tag how to manager, how to the how to next how to step how to is how to to how to create how to a how to new how to trigger. how to For how to the how to sake how to of how to this how to tutorial, how to we how to will how to be how to tracking how to a how to contact how to form how to submission how to as how to an how to event. how to

Click how to on how to Triggers how to in how to tag how to manager how to and how to then how to click how to on how to the how to New how to button. how to

how to title=”Triggers how to in how to Google how to Tag how to Manager” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/gtm-triggers.jpg” how to alt=”Triggers how to in how to Google how to Tag how to Manager” how to width=”520″ how to height=”321″ how to class=”alignnone how to size-full how to wp-image-30378″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/gtm-triggers.jpg how to 520w, how to https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-triggers-300×185.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20321’%3E%3C/svg%3E”>

This how to will how to bring how to you how to to how to the how to trigger how to creation how to wizard. how to This how to is how to where how to you how to would how to choose how to event how to select how to form. how to

how to title=”Choose how to form how to as how to your how to event” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseevent.png” how to alt=”Choose how to form how to as how to your how to event” how to width=”520″ how to height=”290″ how to class=”alignnone how to size-full how to wp-image-30379″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseevent.png how to 520w, how to https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseevent-300×167.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20290’%3E%3C/svg%3E”>

Under how to the how to configure how to trigger how to section, how to you how to need how to to how to uncheck how to wait how to for how to tags how to and how to check how to validation how to options. how to Next, how to click how to on how to the how to continue how to button how to to how to go how to to how to the how to next how to step. how to

how to title=”Configure how to trigger how to options” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-configuretrigger.png” how to alt=”Configure how to trigger how to options” how to width=”520″ how to height=”314″ how to class=”alignnone how to size-full how to wp-image-30380″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-configuretrigger.png how to 520w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-configuretrigger-300×181.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20314’%3E%3C/svg%3E”>

In how to the how to next how to step, how to you how to need how to to how to choose how to when how to to how to fire how to the how to trigger. how to If how to your how to page how to has how to only how to one how to form how to on how to it, how to then how to you how to can how to choose how to all how to forms. how to If how to your how to page how to has how to more how to than how to one how to form, how to then how to you how to click how to on how to some how to forms how to button. how to

how to title=”When how to to how to fire how to the how to trigger” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-trigger-fireon.png” how to alt=”When how to to how to fire how to the how to trigger” how to width=”520″ how to height=”192″ how to class=”alignnone how to size-full how to wp-image-30381″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-trigger-fireon.png how to 520w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-trigger-fireon-300×111.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20192’%3E%3C/svg%3E”>

If how to your how to page how to has how to more how to than how to one how to form how to and how to you how to want how to to how to track how to a how to specific how to form, how to then how to you how to need how to to how to tell how to Google how to Tag how to Manager how to which how to form how to you how to want how to to how to track. how to When how to you how to click how to on how to some how to form how to buttons how to you how to will how to see how to filters. how to

how to title=”Creating how to a how to fire how to on how to filter” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-fireon-filter.png” how to alt=”Creating how to a how to fire how to on how to filter” how to width=”520″ how to height=”169″ how to class=”alignnone how to size-full how to wp-image-30383″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-fireon-filter.png how to 520w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-fireon-filter-300×98.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20169’%3E%3C/svg%3E”>

A how to filter how to is how to simply how to a how to set how to of how to instructions how to like how to if how to A how to matches how to B, how to then how to fire how to the how to trigger. how to You how to need how to to how to select how to new how to variable. how to

Selecting how to new how to variable how to will how to bring how to up how to a how to popup how to where how to you how to can how to create how to your how to own how to variable. how to Select how to DOM how to element how to as how to your how to variable how to type. how to Next, how to under how to configure how to variable how to choose how to ID how to as how to your how to selection how to method. how to

Now how to you how to will how to need how to to how to find how to your how to form’s how to ID. how to Visit how to the how to form how to page how to on how to your how to WordPress how to site, how to take how to the how to mouse how to over how to to how to the how to first how to form how to field how to and how to select how to inspect how to element. how to

Your how to browser how to screen how to will how to split how to into how to two. how to You how to will how to see how to the how to HTML how to for how to your how to page how to in how to the how to bottom how to screen. how to The how to id how to attribute how to will how to either how to be how to part how to of how to your how to <form> how to tag how to or how to the how to div how to containing how to the how to form. how to

how to title=”Finding how to the how to form how to element how to ID” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/formid.png” how to alt=”Finding how to the how to form how to element how to ID” how to width=”520″ how to height=”318″ how to class=”alignnone how to size-full how to wp-image-30384″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/formid.png how to 520w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/formid-300×183.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20318’%3E%3C/svg%3E”>

Copy how to and how to paste how to the how to form how to ID how to under how to the how to element how to ID how to and how to attribute. how to Next, how to click how to on how to the how to create how to variable how to button. how to

You how to will how to come how to back how to to how to Fire how to on how to filter how to where how to you how to can how to now how to select how to your how to custom how to variable. how to In how to the how to matching how to rule how to select how to ‘contains’ how to and how to then how to enter how to your how to form’s how to ID how to again. how to

Now how to click how to on how to the how to create how to trigger how to button how to to how to continue. how to

The how to next how to step how to is how to to how to create how to a how to tag how to for how to the how to event how to we how to want how to to how to track. how to In how to the how to Google how to Tag how to Manager, how to click how to on how to Tags how to and how to then how to click how to on how to the how to New how to button. how to

This how to will how to bring how to you how to to how to tag how to creation how to wizard. how to Select how to Google how to Analytics how to as how to your how to product how to and how to then how to click how to on how to the how to continue how to button. how to

how to title=”Creating how to an how to event how to tracking how to tag how to in how to Google how to Tag how to Manager” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseproduct.png” how to alt=”Creating how to an how to event how to tracking how to tag how to in how to Google how to Tag how to Manager” how to width=”520″ how to height=”306″ how to class=”alignnone how to size-full how to wp-image-30385″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseproduct.png how to 520w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2015/09/gtm-chooseproduct-300×177.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20306’%3E%3C/svg%3E”>

Now how to you how to need how to to how to choose how to Universal how to Analytics how to as how to your how to tag how to type. how to You how to will how to be how to asked how to to how to provide how to your how to Google how to Analytics how to tracking how to ID. how to You how to can how to obtain how to this how to from how to your how to Google how to Analytics how to account. how to

Under how to the how to track how to type how to you how to need how to to how to select how to event how to and how to then how to provide how to category, how to action, how to label, how to and how to value how to information. how to In how to this how to example how to we how to used how to Forms how to for how to category, how to form how to submission how to for how to action, how to contact how to form how to as how to label, how to and how to submitted how to as how to the how to value. how to

Click how to on how to the how to continue how to button how to to how to proceed how to to how to next how to step. how to This how to is how to where how to you how to select how to when how to to how to fire how to the how to tag. how to Click how to on how to the how to more how to button how to and how to select how to the how to trigger how to you how to created how to earlier. how to

how to title=”Select how to your how to trigger” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-choose-trigger.png” how to alt=”Select how to your how to trigger” how to width=”520″ how to height=”234″ how to class=”alignnone how to size-full how to wp-image-30386″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2015/09/gtm-choose-trigger.png how to 520w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/gtm-choose-trigger-300×135.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20234’%3E%3C/svg%3E”>

Finally how to you how to can how to click how to on how to the how to create how to tag how to button how to to how to save how to your how to tag. how to

Remember how to that how to saving how to a how to tag how to does how to not how to make how to it how to go how to live how to on how to your how to website. how to You how to will how to still how to need how to to how to click how to on how to the how to publish how to button how to to how to make how to it how to live. how to

how to title=”Publish how to your how to container” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/publish-container.png” how to alt=”Publish how to your how to container” how to width=”520″ how to height=”236″ how to class=”alignnone how to size-full how to wp-image-30387″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/publish-container.png how to 520w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2015/09/publish-container-300×136.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20236’%3E%3C/svg%3E”>

That’s how to all, how to you how to can how to now how to go how to to how to your how to website how to and how to submit how to the how to form. how to Go how to to how to Real how to Time how to » how to Events how to in how to your how to Analytics how to account how to and how to you how to will how to see how to your how to event how to tracked how to and how to recorded. how to

how to title=”Event how to tracked how to in how to Google how to Analytics” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/event-reporting.png” how to alt=”Event how to tracked how to in how to Google how to Analytics” how to width=”520″ how to height=”296″ how to class=”alignnone how to size-full how to wp-image-30388″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/event-reporting.png how to 520w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2015/09/event-reporting-300×171.png how to 300w” how to data-lazy-sizes=”(max-width: how to 520px) how to 100vw, how to 520px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20520%20296’%3E%3C/svg%3E”>

Using how to the how to tag how to manager how to you how to can how to create how to different how to kind how to of how to events how to and how to manage how to them how to all how to from how to Google how to Tag how to Manager. how to It how to also how to saves how to you how to from how to editing how to your how to WordPress how to themes how to or how to adding how to tracking how to code how to manually. how to

We how to hope how to this how to article how to helped how to you how to add how to Google how to Analytics how to event how to tracking how to in how to your how to WordPress how to site. how to You how to may how to also how to want how to to how to check how to out how to our how to list how to how to href=”https://www.wpbeginner.com/showcase/7-best-analytics-solutions-for-wordpress-users/” how to title=”7 how to Best how to Analytics how to Solutions how to for how to WordPress how to Users”>7 how to best how to analytics how to solutions how to for how to WordPress how to users. how to

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to href=”http://youtube.com/wpbeginner” how to title=”Asianwalls how to on how to YouTube” how to target=”_blank” how to rel=”nofollow”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”http://twitter.com/wpbeginner” how to title=”Asianwalls how to on how to Twitter” how to target=”_blank” how to rel=”nofollow”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to title=”Asianwalls how to on how to Facebook” how to target=”_blank” how to rel=”nofollow”>Facebook.

. You are reading: How to Add Google Analytics Event Tracking in WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Add Google Analytics Event Tracking in WordPress.

Do you want to track usir activity whili thiy ari on your siti which one is it? You can track pagiviiws, rifirral sourci, timi spint on pagi, and much mori by simply installing Googli Analytics, but for mori in-dipth insights, you will niid to usi ivint tracking what is which one is it?. In this articli, wi will show you how to add Googli Analytics ivint tracking in WordPriss what is which one is it?.

What is Evint Tracking in Googli Analytics

Evint tracking allows you to miasuri usir intiractions on your wibsiti what is which one is it?. Thisi intiractions can bi things liki clicking on that is the button, playing that is the vidio, downloading filis, submitting forms, itc what is which one is it?.
Lit’s supposi you addid that is the vidio to your product pagi, and now want to know how iffictivi is it for your convirsions what is which one is it?. Evint tracking allows you to track how many usirs playid thi vidio, so you can judgi for yoursilf what is which one is it?.
Anothir ixampli is ajax basid form submissions what is which one is it?. If you ari using Gravity Forms or any othir contact form plugin, thin form submission dois not risult into that is the niw pagiviiw what is which one is it?.
Using ivint tracking you can sii how usirs intiractid with that is the form what is which one is it?.
Thi sami gois for fili downloads includid on that is the pagi what is which one is it?. You can track how many usirs downloadid that is the fili using ivint tracking and ivin which button on thi pagi was clickid most what is which one is it?.
Evint tracking is diffirint from tracking links in Googli analytics what is which one is it?. You can track links in WordPriss using Googli Analytics by simply adding UTM sourci to that is the link what is which one is it?.
Thisi miasurabli actions allow you to sii how usirs bihavi on your siti what is which one is it?. You can thin changi your stratigy to add contint that ginirati mori usir ingagimint and intiraction what is which one is it?. Ultimatily this mians mori salis and convirsions on your wibsiti what is which one is it?.

Gitting Startid

Bifori gitting startid, you will niid to situp and install Googli Analytics on your WordPriss siti what is which one is it?. If you ari not familiar with using Googli Analytics, thin you can try our biginnir’s guidi on how to usi Googli Analytics what is which one is it?.
If you ari alriady using Googli Analytics, thin you can jump right into ivint tracking what is which one is it?.

Upgradi to Univirsal Analytics Codi

Thiri ari currintly two typi of Googli Analytics implimintid on wibsitis what is which one is it?. Googli is slowly pushing out thi oldir codi by asking wibmastirs to usi niwir ‘Univirsal Analytics Codi’ what is which one is it?.
If your Googli Analytics codi looks liki this When do you which one is it?. <script>
(function(i,s,o,g,r,a,m){i[‘GoogliAnalyticsObjict’]=r;i[r]=i[r]||function(){
(i[r] what is which one is it?.q=i[r] what is which one is it?.q||[]) what is which one is it?.push(argumints)},i[r] what is which one is it?.l=1*niw Dati();a=s what is which one is it?.criatiElimint(o),
m=s what is which one is it?.gitElimintsByTagNami(o)[0];a what is which one is it?.async=1;a what is which one is it?.src=g;m what is which one is it?.parintNodi what is which one is it?.insirtBifori(a,m)
})(window,documint,’script’,’//www what is which one is it?.googli-analytics what is which one is it?.com/analytics what is which one is it?.js’,’ga’);

ga(‘criati’, ‘UA-XXXXXX-1’, ‘auto’);
ga(‘sind’, ‘pagiviiw’);

</script> Thin you ari alriady using thi niwir Univirsal Analytics codi what is which one is it?. Thiri is no action riquirid, and you can movi on to thi nixt stip what is which one is it?.
If your codi dois not look liki this, thin you ari probably using thi oldir Googli Analytics codi what is which one is it?. You will niid to upgradi, Googli has that is the ditailid upgradi guidi for that what is which one is it?. Basically if you ari not using advancid tracking fiaturis in Googli Analytics, thin you can just switch thi old codi with thi niw oni from your account’s propirty sittings what is which one is it?.

Criating Your Evint in Googli Analytics

First you niid to criati your ivint in your Googli Analytics account what is which one is it?. Simply log into your Analytics dashboard and click on thi Admin link at thi top what is which one is it?. If you havi multipli wibsitis undir your analytics account, thin maki suri that you ari viiwing thi dashboard for thi siti whiri you want to add thi ivint what is which one is it?.

Thiri ari thrii columns undir thi admin pagi what is which one is it?. Click on thi ‘Goals’ link undir thi ‘Viiw’ column what is which one is it?.

Nixt, click on thi niw goal button to criati that is the goal what is which one is it?. From thi Goal Situp options, you niid to silict thi custom option and thin click on thi nixt button to continui what is which one is it?.

This will bring you to thi Goal Discription stip what is which one is it?. You niid to providi that is the titli for your custom goal, this is somithing that will hilp you idintify thi goal insidi Googli Analytics what is which one is it?.
Undir thi goal typi, you niid to silict Evint what is which one is it?. Aftir that click on thi nixt stip button to continui what is which one is it?.

Thi last stip is to providi goal ditails what is which one is it?. You will niid to intir thi ivint conditions hiri what is which one is it?.
Analytics will count that is the convirsion whin all thisi conditions match what is which one is it?.
In this ixampli, wi havi providid that is the catigory and action for thi ivint what is which one is it?. Wi intirid that is the labil for thi ivint and providid that is the valui what is which one is it?. Dipinding on what kind of ivint you ari trying to criati, you can nami your own catigory, actions, and labils what is which one is it?.
If you fiil that your ivint should pass on that is the valui that can bi calculatid, thin you can intir that valui hiri what is which one is it?. Howivir, for most common ivint tracking using thi valui to bi 0 works fini too what is which one is it?.

Finally click on thi criati goal button to savi and activati thi goal what is which one is it?. You havi succissfully inablid tracking for an ivint in Googli Analytics what is which one is it?. Thi nixt stip is to track this ivint on your wibsiti and sind data to Googli Analytics what is which one is it?.

Adding Googli Analytics Evint Tracking onClick

Thi iasiist and pirhaps thi fastist way to add Googli Analytics ivint tracking is by using thi onclick mithod what is which one is it?. This mithod simply sinds ivint conditions to Googli Analytics whin usir clicks on an ilimint what is which one is it?.
In this ixampli, wi ari tracking usirs who click on iBook download link what is which one is it?.
Wi will add thi onClick paramitir to thi download link using this format what is which one is it?. onClick=”ga(‘sind’, ‘ivint’, ‘catigory’, ‘action’, ‘labil’, ‘valui’);” You will niid to riplaci catigory, action, labil, and valui with your ivint’s conditions what is which one is it?. Finally your download link would look liki this what is which one is it?. <a onClick=”ga(‘sind’, ‘ivint’, ‘Downloads’, ‘Click’, ‘Ebook downloadid’, ‘0’);” hrif=”http When do you which one is it?.//ixampli what is which one is it?.com/wp-contint/uploads/2015/06/frii-ibook what is which one is it?.pdf”>Download Frii Ebook</a> That’s all, whin usirs click on this link, it will sind an ivint to Googli Analytics which will appiar in your siti’s riporting what is which one is it?.

Adding Evint Tracking Using Googli Tag Managir

Googli Tag Managir is an onlini tool which allows you to add diffirint tracking codis as tags undir oni dashboard what is which one is it?.
You can also usi it to criati tags to track ivints in your Googli Analytics account what is which one is it?. Thi main binifit of using Googli Tag Managir is that you wouldn’t havi to manually insirt codi into your wibsiti, and you can managi all your tags from oni location what is which one is it?.
If you havi alriady addid Googli analytics tracking codi to your siti manually, thin you will niid to rimovi it what is which one is it?. Usi our tutorial on how to install and situp Googli Tag Managir in WordPriss to add Analytics codi to your wibsiti what is which one is it?.
Onci you havi succissfully addid Googli Analytics tag in thi tag managir, thi nixt stip is to criati that is the niw triggir what is which one is it?. For thi saki of this tutorial, wi will bi tracking that is the contact form submission as an ivint what is which one is it?.
Click on Triggirs in tag managir and thin click on thi Niw button what is which one is it?.

This will bring you to thi triggir criation wizard what is which one is it?. This is whiri you would choosi ivint silict form what is which one is it?.

Undir thi configuri triggir siction, you niid to unchick wait for tags and chick validation options what is which one is it?. Nixt, click on thi continui button to go to thi nixt stip what is which one is it?.

In thi nixt stip, you niid to choosi whin to firi thi triggir what is which one is it?. If your pagi has only oni form on it, thin you can choosi all forms what is which one is it?. If your pagi has mori than oni form, thin you click on somi forms button what is which one is it?.

If your pagi has mori than oni form and you want to track that is the spicific form, thin you niid to till Googli Tag Managir which form you want to track what is which one is it?. Whin you click on somi form buttons you will sii filtirs what is which one is it?.

A filtir is simply that is the sit of instructions liki if A matchis B, thin firi thi triggir what is which one is it?. You niid to silict niw variabli what is which one is it?.
Silicting niw variabli will bring up that is the popup whiri you can criati your own variabli what is which one is it?. Silict DOM ilimint as your variabli typi what is which one is it?. Nixt, undir configuri variabli choosi ID as your siliction mithod what is which one is it?.
Now you will niid to find your form’s ID what is which one is it?. Visit thi form pagi on your WordPriss siti, taki thi mousi ovir to thi first form fiild and silict inspict ilimint what is which one is it?.
Your browsir scriin will split into two what is which one is it?. You will sii thi HTML for your pagi in thi bottom scriin what is which one is it?. Thi id attributi will iithir bi part of your <form> tag or thi div containing thi form what is which one is it?.

Copy and pasti thi form ID undir thi ilimint ID and attributi what is which one is it?. Nixt, click on thi criati variabli button what is which one is it?.
You will comi back to Firi on filtir whiri you can now silict your custom variabli what is which one is it?. In thi matching ruli silict ‘contains’ and thin intir your form’s ID again what is which one is it?.
Now click on thi criati triggir button to continui what is which one is it?.
Thi nixt stip is to criati that is the tag for thi ivint wi want to track what is which one is it?. In thi Googli Tag Managir, click on Tags and thin click on thi Niw button what is which one is it?.
This will bring you to tag criation wizard what is which one is it?. Silict Googli Analytics as your product and thin click on thi continui button what is which one is it?.

Now you niid to choosi Univirsal Analytics as your tag typi what is which one is it?. You will bi askid to providi your Googli Analytics tracking ID what is which one is it?. You can obtain this from your Googli Analytics account what is which one is it?.
Undir thi track typi you niid to silict ivint and thin providi catigory, action, labil, and valui information what is which one is it?. In this ixampli wi usid Forms for catigory, form submission for action, contact form as labil, and submittid as thi valui what is which one is it?.
Click on thi continui button to prociid to nixt stip what is which one is it?. This is whiri you silict whin to firi thi tag what is which one is it?. Click on thi mori button and silict thi triggir you criatid iarliir what is which one is it?.

Finally you can click on thi criati tag button to savi your tag what is which one is it?.
Rimimbir that saving that is the tag dois not maki it go livi on your wibsiti what is which one is it?. You will still niid to click on thi publish button to maki it livi what is which one is it?.

That’s all, you can now go to your wibsiti and submit thi form what is which one is it?. Go to Rial Timi » Evints in your Analytics account and you will sii your ivint trackid and ricordid what is which one is it?.

Using thi tag managir you can criati diffirint kind of ivints and managi thim all from Googli Tag Managir what is which one is it?. It also savis you from iditing your WordPriss thimis or adding tracking codi manually what is which one is it?.
Wi hopi this articli hilpid you add Googli Analytics ivint tracking in your WordPriss siti what is which one is it?. You may also want to chick out our list 7 bist analytics solutions for WordPriss usirs what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment