MeasureSchool logo
Search
Close this search box.
Search
Close this search box.

How to Track Conversion Value with Google Tag Manager and the Data Layer

Last Modified on January 10, 2024

Great, so you’ve set up conversion tracking for events across your marketing tools — but how do you assign a value to these conversions so that you can track revenue? 

Tracking conversion values will help you accurately measure your marketing campaigns’ financial impact on your business. You can also send this data to other tracking tools like Facebook or Google Ads and further improve your sales!

GTM For Beginners

Sign up to the FREE GTM for Beginners Course...

In this guide, we’ll learn two methods of tracking conversion value with Google Tag Manager and how to send this data to other marketing tools. 

An overview of what we’ll cover:

So let’s start!

Why Is Conversion Value Important?

With conversion values, you can quantify the monetary impact each conversion has on your business. This is especially important in eCommerce stores, where different products have different prices.

So you can add the conversion value as 1 dollar or 1 euro (depending on the currency or the price of the product that converts).

For example, if you keep the Conversion Value as 1, it will count the value of 10 conversions as $10.

Conversion value of an event associated with a Tag in Google Tag Manager

Let’s consider an eCommerce store with different products available at a wide range of prices. 

This time, the conversion value will depend on the total order value

Checking the transaction value of the product from the eCommerce website

This final value is the amount we’ll send to our Google Ads conversion tracking, Facebook conversion tracking, and also to the sales event that fires in Google Analytics.  

We can transfer this information using different methods, but the best practice is to do it with a custom Data Layer.

🚨 Note: If you find that the data layer contains the right information but isn’t in the format you can use, check out our handy guide on how to transform the data layer with Google Tag Manager.

Implementing Your Custom Data Layer

You’ll find the custom Data Layer for your website under the Data Layer tab of Google Tag Manager’s preview and debug console

🚨 Note: This holds true for a website built in WordPress with the Woo-Commerce plugin. However, this will change based on the installation of your website.

But first, let’s discuss what it means to implement a custom Data Layer.

To demonstrate, we’ll take a look at a new order with a different conversion value. 

Total order value of the product purchased on demo shop

If you have implemented a custom Data Layer for the web page, you’ll be able to see this order’s details under the Data Layer tab of the preview mode: things like the tax, shipping cost, payment type, individual products, and more.

Accessing the transaction details from the data layer of the Google Tag Manager

We can collect all of this information and send it to tracking tools that help us manage and analyze conversion data. 

You can implement a similar custom Data Layer using the plugin Google Tag Manager for WordPress by Thomas Gieger. This plugin enables the Data Layer for the transaction page on our website. 

Depending on your website, you might need to use a different plugin or ask the developer of your website to add the conversion values directly to the Data Layer. 

Next, to send these values to the tracking tools, you’ll need a Data Layer variable.

Capturing Conversion Value with the GTM Variable

A data layer will always consist of key-value pairs (if these are unfamiliar to you, check out our post on UTM parameters). For example, if transactionTotal is the key, our value will be 40

Identifying the key-value pairs from the transaction details in the data layer of the Google Tag Manager

We’ll use this key and add it to a variable. Let’s open the Variables section on Google Tag Manager and create a New Variable. 

Accessing the variables section from the Google Tag Manager to create a new variable

We’ll also add a name to the variable and select the Data Layer Variable as the variable type. 

Next, we need to add the key for the variable. In our case, the key will be transactionTotal

Once done, click on Create Variable.

Creating a new data layer type variable in Google Tag Manager

To see how this variable appears, refresh the webpage in GTM preview mode and place another order from the shop. 

You’ll find the Data Layer variable under the Variables tab of the PageView event. The dataLayerTransactionValue will be equal to the total order value. 

Checking the transaction value of the order from the variables section of the pageview event in Google Tag Manager

We’ll also find the different Tags that fired when we made a particular transaction. 

Identifying the Tags that fired on the transaction checkout page

We can use this variable to pass the value of the transaction to our tracking tools using Tags.

Let’s see how!

Passing on the Value of the Conversion to GTM Tags

Open your Google Tag Manager account. 

Then open one of the conversion Tags through which you want to send the value data.  

Selecting a Tag from the Google Tag Manager

Scroll down to the Conversion Value field and click on the brick beside the value box to select the Data Layer variable. 

Next, click on Continue. 

Adding the dataLayerTransactionValue variable to the conversion value of a Tag in Google Tag Manager

🚨 Note: Dynamic values can always be added using double curly brackets around a variable’s name. 

So, every time this variable is called, it will pick up the data from the data layer and transfer it to the Tag. 

This is the best practice to transfer data into Google Tag Manager. This is because, with a proper Data Layer integration, the data is available in a structured format, making it easier to access. 

Another method of fetching this information is by scraping the actual DOM tree. 

However, this method isn’t the most accurate one because it records the value directly from the display of the web pages. This means that if the page changes, the value that is fetched will change and impact your tracking. 

One way to implement the scraping method is by using a DOM element variable. But in our guide, we’ll do it with custom JavaScript. 

Getting the Total Conversion Value with Custom JavaScript

Let’s open the order received page and right-click on the total order value to Inspect the element. 

Inspecting the conversion value element from the transaction page on the eCommerce website

On the right side of your screen, an HTML mark-up window will open. 

With the help of a JavaScript variable, we can access the element from the Document Object Model (DOM) and fetch the total value. 

Identifying the value of the transaction total from the DOM tree

This is a fairly easy process for someone who knows JavaScript. However, if you’re a marketer who’s not comfortable writing such codes, I have a recommendation for you! 

Using GTM Variable Builder to Write JavaScript

The GTM Macro Builder plugin can automatically write the JavaScript you need to pull the given value. You can download it from the Chrome extension section. 

Adding the GTM Macro Builder plugin as a Google Chrome extension

All you need to do is select the desired element on your web page and open the console. Since we only want the value to transfer to our Tag, we won’t select the currency sign in this case.

Once done, we’ll click on the GTM Macro Builder extension to extract the data with the help of JavaScript. And at the bottom of the Console window, we’ll be able to see a query selector code in green. Let’s Copy the code to test it. 

Copying the JavaScript code for the chosen conversion value element from the eCommerce transaction webpage

Paste the code into the Console and press the Enter key to run it.

Pasting the JavaScript code into the HTML console window 

This code will return the total conversion value. 

JavaScript code returns the total conversion value in the HTML console window 

Next, we want to make this value accessible to Google Tag Manager. 

Create DOM Transaction Variable

Let’s create a New Custom JavaScript variable in Google Tag Manager. 

We’ll configure the variable by adding JavaScript code. This code should be a JavaScript function that returns a value.

Custom JavaScript code should be a function that returns a value

We’ll also add a Try and Catch function so that it can catch all the errors without interrupting the implementation. You can use our Conversion Value Template to write JavaScript code for Google Tag Manager.

function() {
try {
return;
} catch(e) {
return " " ;
}
}
Configuring the JavaScript  variable by adding a code

Next, we’ll paste the query selector that we copied from the GTM Macro Builder. This code will be implemented after we call the return function. 

Lastly, click on Create Variable.

Configuring the JavaScript code to identify the transaction value

Once we’ve created the variable, we can test it. 

Let’s refresh the final transaction confirmation page of the demo shop. If the variable is installed correctly, the DomTransactionValue will show the correct order value under the Variables tab of the PageView event.

Custom JavaScript variable updates the correct order value from the transaction page of the demo shop 

Furthermore, we can use this value to pass into the Tags that fire on the transaction page. 

For this example, let’s use a Facebook conversion Tag to do this!

Sending Conversion Value to Facebook

Open an existing Tag for tracking conversions on Facebook. We’ll add our variable in the HTML code that configures the Tag. 

First, we’ll need to locate the correct place in the code that accesses the value of the transaction.

Identifying the correct place in the HTML code to add our Custom JavaScript variable

Then, simply replace the value of the transaction with the variable name. Again, the variable name will be inside the double curly brackets.

Configuring the Facebook conversion tracking Tag by adding a Custom JavaScript variable on Google Tag Manager

Lastly, Save the Tag. 

Similar to this, you can add the variable to the Google Analytics event Tag to send the conversion value to Google Analytics. 

🚨 Note: For eCommerce tracking on Google Analytics, you’ll need proper data integration. This is because GA eCommerce tracking sends over a lot of values other than just the conversion value.

Configuring the Google Analytics conversion tracking Tag on Google Tag Manager by adding a Custom JavaScript variable

To test our Tags, let’s refresh Google Tag Manager and check out another product. 

If the Tags are installed correctly,  you’ll be able to see all the Tags fired when you place an order. 

Checking the fired Tags on the Google Tag Manager preview mode after a purchase on the website

Select a Tag to see if it shows the correct transaction value. However, make sure to select Values as the Display Variables type. 

Choosing the display variable as values to identify the conversion value of the transaction page

Once done, the values of the Tags will be the same as the ones on the final transaction page.  

Conversion value in the Tags fired on the Google Tag Manager

Similarly, let’s also check the Facebook Tag that has been fired. 

If the installation is correct, you’ll be able to see the value equivalent to the transaction amount. This amount will be pulled directly from the DOM element.

Locating the transaction value from the fired Facebook Tag on the Google Tag Manager

FAQ

Why is tracking conversion value important?

Tracking conversion value allows you to quantify the monetary impact of each conversion on your business. This is especially crucial for eCommerce stores where different products have different prices. By assigning a value to conversions, you can accurately measure the financial impact of your marketing campaigns and optimize your sales strategies.

How can I implement a custom Data Layer?

To implement a custom Data Layer, you can use plugins like Google Tag Manager for WordPress or directly add the conversion values to the Data Layer. The specific method may vary depending on your website setup, so it’s recommended to consult the documentation or seek assistance from your website developer.

How can I pass the conversion value to GTM Tags and other tracking tools?

To pass the conversion value to GTM Tags, you need to create a Data Layer variable in Google Tag Manager and link it to the conversion value field of the respective Tag. This allows the Tag to access and utilize the captured conversion value. Similarly, you can modify Tags in Google Tag Manager to send the conversion value to other tracking tools such as Facebook or Google Analytics, enabling comprehensive analysis and optimization of your marketing efforts.

Summary

So that’s all you need to know about tracking conversion values with Google Tag Manager. 

Conversion value is an important point of data to gauge the success of different conversions. With this method, you can send this data to various marketing tools such as Google Ads, Facebook, or Google Analytics. 

Before sending the conversion value, you’ll need to set up conversion tracking for your marketing tools. 

Were you able to track the conversion values for your eCommerce store? Which method do you prefer? Let us know in the comments below! 

MeasureMasters

REOPENED!

Master Data & Analytics with MeasureMasters

Exclusive Courses & Workshops | Ongoing Troubleshooting | Support Resources, Tools & much more
Subscribe
Notify of
guest
4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Nathan Brunetti
Nathan Brunetti
8 years ago

Can this method be used to scrape any HTML value off of a page, not necessarily a conversion value? We have a homepage slider with 5 different slides and each slide goes to a different page. We would like to see the traffic that is coming from these slides as events in GA once a person clicks on a slide.

Julian
Julian
8 years ago

generally yes, but it might be harder if the element you want to pull is inside of another element. You definitely need to test it and see

Nathan Brunetti
Nathan Brunetti
8 years ago

Can this method be used to scrape any HTML value off of a page, not necessarily a conversion value? We have a homepage slider with 5 different slides and each slide goes to a different page. We would like to see the traffic that is coming from these slides as events in GA once a person clicks on a slide.

Julian
Julian
8 years ago

generally yes, but it might be harder if the element you want to pull is inside of another element. You definitely need to test it and see

MeasureSchool Locker

Unlock our Free Tools, Templates and Resources

now it's time to

Start measuring like a master

Itching to jump into the world of MeasureMasters? This is what you have to look forward to.

Ready to take your digital marketing to the next level?

Subscribe to our newsletter and stay ahead with our latest tips and strategies.