Saturday, July 27

Extract a Price from a Page with Google Tag Manager

While DOM scraping is not recommended (because it’s quite fragile) in web tracking, sometimes you just have no other choice. Asking a developer to push a certain data point to the Data Layer is always the best practice but in some projects, you have just two options:

  • try to fetch a certain value from the page by yourself
  • or do nothing and continue without that particular data point

In this blog post, I wanted to show you several little scripts that will help you fetch a price if it is a visible element on a page.

This is not designed to fetch all of the prices on a page and build complex-ish objects, etc. Let’s take a step back. This blog post is for those situations where you want to work only with one price.

Where can it be useful?

  • Maybe you want to track an impression of a product and you want to send the price of that product to some tool? If yes, this guide is for you.
  • Maybe you want to track purchases and you want to send the order total to some tracking pixel? If yes, then you will find this guide useful too.

In this blog post, I will be focusing ONLY on how to extract a price from a page, not how to send it to other analytics/marketing tools.

Custom JavaScript Variable

In this guide, I will be using a Custom JS variable. Yes, I know that Custom Template would be a better solution but it looks like at the moment, Custom Templates do not allow to access elements on a page. If I’m wrong, please correct me. I’d be happy to create a Custom Variable Template for this.

There are various ways of how websites display prices, e.g.:

  • 12.00 USD
  • $12.00
  • Price: $12,000.00, etc.

Also, your definition of an “extracted price” might be different than mine. Some people just want to get rid of the dollar sign, others want to turn strings to numbers, etc. That’s why I will post several options of the Custom JavaScript code and you’ll have to choose the one that fits your needs the best.

Note: obviously, these codes will not cover ALL of the possible price formatting variations. I was trying to solve the most common situations. So, if you have some edge case, let me know in the comments and I’ll see what I can do.

Requirement

To properly implement this solution, you must be familiar with CSS selectors. Usually, the basics are enough. In this guide, I presume that you already have that knowledge.

Option #1: If you just want to get rid of text and currency signs

This option will work if the price on your website matches one of the following examples (works with any currency code or sign):

  • some text 12.00 (e.g. Price: 12.00). The Custom JavaScript variable will return a string ‘12.00‘.
  • some text 12.00 some textThe Custom JS variable will return a string ‘12.00‘.
  • $12.00 (applies to other currency signs too)The Custom JS variable will return a string ‘12.00‘.
  • 12.00USD (or some other currency code)The Custom JS variable will return a string ‘12.00‘.
  • 12,000.00 USD or $12,000.00The Custom JS variable will return a string ‘12,000.00

These were the scenarios that I was testing against. And here is the code itself:

function() {
  var priceText = document.querySelector('ENTER_YOUR_SELECTOR');
  if (priceText) {
  var regex = /([0-9.,]+)/;
  if (regex.test(priceText.innerText)) {
    return priceText.innerText.match(regex)[0];
  }
  }
}

Important: you need to change the EDIT_YOUR_SELECTOR part and enter the actual selector of the element that contains the price. For example:

  • if the price element has the class selected-ticket-price, the CSS Selector will be .selected-ticket-price
  • if the price element has the ID order-total, the CSS selector will be #order-total , etc.

Here’s a guide that can help you with CSS selectors. Too confusing? Consider enrolling in my Intermediate/Advanced GTM course and I’ll teach you what the heck this is.

Option #2: If you want to get rid of the text, currency signs, and commas

This option will work if the price on your website looks like this (thousands are separate with commas):

  • 12,000.00 USDThe Custom JS variable will return a string ‘12,000.00‘.
  • $12,000.00The Custom JS variable will return a string ‘12,000.00‘.

If there is some text before or after the price, it will be automatically removed.

function() {
  var priceText = document.querySelector('ENTER_YOUR_SELECTOR');
  var regex = /([0-9.,]+)/;
  if (regex.test(priceText.innerText)) {
    return priceText.innerText.match(regex)[0].replace(/,/g, '');
  }
}

If we compare this script with option #1, this uses a method replace that will remove all the commas in the extracted price.

Once again, you need to replace the ENTER_YOUR_SELECTOR with an actual selector of the website element that contains a price.

Option #3: If you also want the variable to return the number (instead of a string)

Some tools might require you to pass the price not as a string (‘12.99’) but as a number (12.99 — without quotation marks). If that’s your case, you need to use the parseFloat method in the return statement, for example:

function() {
  var priceText = document.querySelector('ENTER_YOUR_SELECTOR');
  var regex = /([0-9.,]+)/;
  if (regex.test(priceText.innerText)) {
    return parseFloat(priceText.innerText.match(regex)[0].replace(/,/g, ''));
  }
}

If you already have a price as a variable

What if you already have an unprocessed price as a variable in Google Tag Manager? For example, a Data Layer Variable that returns $12.00?

In that case, you can replace document.querySelector(‘ENTER_YOUR_SELECTOR’) and insert your variable surrounded by double curly braces. Also, get rid of the “innerText” property. The final result:

function() {
  var priceText = {{INSERT YOUR VARIABLE HERE}};
  var regex = /([0-9.,]+)/;
  if (regex.test(priceText)) {
    return priceText.match(regex)[0].replace(/,/g, '');
  }
}

To learn more about how to insert variables in GTM, you can read this guide.

Additional tips regarding when to use this variable

Keep in mind that any of these variables will return the proper value ONLY if the price element exists on a page.

  • If the element is rendered when the page is loaded, you can start using it on DOM Ready and subsequent events. DO NOT use it on the Container Loaded (a.k.a. Pageview).
  • If the price element appears dynamically after a particular visitor interaction, start using this variable in your tags on the Element Visibility event (when the price appears) and subsequent events.

To sum up: don’t try to activate your tags (that use these Custom JS variables) when the price element is not rendered on a page yet.

Extract a Price from a Page with GTM: Final Words

And that’s it. In this quick guide, I shared several Custom JavaScript snippets that should help you extract a price from a page with the help of Google Tag Manager. If it is possible to ask a developer to push the price to the Data Layer, always go with that option. Consider this blog post as a plan B.

Why is this more fragile? Because DOM scraping is more prone to errors. If developers change the code of the front-end of the website, such tracking solutions can easily break.

Source: analyticsmania

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x