The Unverified status has been showing for more than 24 hours

Starting July 30, 2021, conversion actions that haven't recorded data in the past 13 months will be removed. Removed conversions will no longer appear in the conversions table by default, but will be archived and you can re-enable them anytime. Learn more about how to Remove inactive conversions.

Unverified means that the conversion tracking tag associated with this conversion action has not yet fired. If you recently set up this conversion action, this may be expected since you may need to wait awhile for a user to complete a conversion on your website.

However, if you receive many conversions every hour (including unattributed conversions), then you can expect the status to update within 10 minutes. If you know you've waited long enough for conversions to be generated but the status remains “Unverified”, there’s an issue with your conversion tracking tag setup. Click Troubleshoot next to the conversion action to perform a test conversion on your website. With our guided flow, you can:

After you (or your website manager) install the conversion tracking tag on your site, you can confirm that it's on the correct page and verify your tag by following the instructions below.

Steps after implementing conversion tracking tags on your website

Expand all

1. Confirm that the tag is on the correct page

An animated UI representation of the process of checking that the Google Tag has been implemented correctly.

  1. Go to the website on which you're tracking conversions and visit the conversion confirmation page. That's the page customers see after they've completed a conversion, like a "thank you" page after they make a purchase or sign up for a newsletter.
  2. Check the source code for the page. In Google Chrome, you can right-click on the web page and select View Page Source. Steps will be different in other browsers.
  3. Now look for the conversion tag code. If the tag was successfully placed, you'll see a comment tag that looks like this: <!-- Event snippet for {Action name} conversion page -->. The {Action name} should be the one you entered earlier in the field "Action name." You may need to contact your developer for assistance.
  4. If the tag is on the page, continue to the next step to try other options. If the tag is not on the page, you or whoever maintains your website will need to go through the conversion tracking setup process and add the tag.
2. Verify the tag

Here are some options for verifying that conversion tracking and your tag are set up correctly. It’s best to use one of the first two options, since the other option requires you to click on your ad, and you’ll be charged for the click. If you're very familiar with website code, refer to the "Using debugging tools" section below. It'll show you another way to verify conversion tracking without costing you a click.

  1. Use Tag Assistant: Tag Assistant is a free Chrome Extension that automatically checks Google code snippets on any page in real time. It’ll show you the tags and errors found, help you resolve the problem, and make suggestions for improvements, including updates to old code. Download and install Tag Assistant via the Chrome Web Store or visit the Tag Assistant Help Center for more information.
    An animated UI representation of the process of connecting the Google Tag Assistant extension to a domain.
  2. Wait for a conversion to show up after a few hours: If you know that a click on your ad resulted in a conversion, and you know the click occurred after you activated conversion tracking, wait for the conversion to appear in your Google Ads account.
  3. Complete a test conversion on your site and wait for the conversion to appear on Google Ads: Run a search for one of your active keywords on Google and click on your ad. You can then complete a test conversion on your site. After completing the conversion, it'll appear in your Google Ads account within the next few hours.
    An animated UI representation of the process of completing a test conversion using Google Tag Assistant.

 

After following the steps for one of these options, you can see conversions in your Google Ads account by clicking Campaigns in the page menu on the left, or by clicking the tool icon Google Ads | tools [Icon] in the upper right corner of your account and selecting Conversions.

3. Review example of a correctly implemented tag

Here's what a correct conversion tracking tag should look like (except for the tag IDs, value and currency, all highlighted, which will look different in your tag):

<!-- Google tag (gtag.js) - TAG_ID -->

<script async src="https://www.googletagmanager.com/gtag/js?id="TAG_ID"></script>

<script>

  window.dataLayer = window.dataLayer || [];

  function gtag(){dataLayer.push(arguments);}

  gtag('js', new Date());

  gtag('config', 'TAG_ID');

</script>

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-AbC-D_efG-h12_34-567',

    'value': 1.0,

    'currency': 'USD'

  });

</script

Common issues with Google tags

If you still don't see conversions being attributed after those steps, below are a few common issues that you should check for in your conversion tracking tag setup:

Dynamic conversion in wrong format
The sale value in your tag shouldn't contain a currency prefix ($) or commas (,). If you insert "$20.00," for example, JavaScript will recognize this as a text string instead of a number. This would cause an error, which would mean no conversion or conversion value would be recorded. See these articles for more information about providing conversion value and currency in your tagtracking transaction-specific conversion values and, using Tag Manager to deploy Google Ads conversion tags

Incorrect

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-123456789/AbC-D_efG-h12_34-567',

    'value': '$2,000.00',

    'currency': 'USD'

  });

</script>

 

Correct

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-123456789/AbC-D_efG-h12_34-567',

    'value': 2000.00,

    'currency': 'USD'

  });

</script

Incorrect send_to parameter

The send_to parameter in the event snippet must match the value that you copy from the Google Ads interface exactly.

Incorrect

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW123456789AbC-D_efGh1-2_34567',

    'value': 1.0,

    'currency': 'USD'

  });

</script>

 

Correct

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-123456789/AbC-D_efG-h12_34-567',

    'value': 1.0,

    'currency': 'USD'

  });

</script>

JavaScript syntax errors

Be on the lookout for syntax errors that may inadvertently be introduced when copying and pasting the tag from the Google Ads interface. Common syntax errors include:

Unquoted strings

Incorrect

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': AW-AbC-D_efG-h12_34-567,

    'value': 1.0,

    'currency': USD

  });

</script>

 

Correct

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-AbC-D_efG-h12_34-567',

    'value': 1.0,

    'currency': 'USD'

  });

</script>

Invalid quotation mark

Incorrect

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': “AW-AbC-D_efG-h12_34-567”,

    'value': 1.0,

    'currency': “USD”

  });

</script>

 

Correct

<!-- Event snippet for Example conversion page -->

<script>

  gtag('event', 'conversion', {'send_to': 'AW-AbC-D_efG-h12_34-567',

    'value': 1.0,

    'currency': 'USD'

  });

</script>

 

Tip: The JavaScript console will usually alert you to malformed JavaScript code. You can access the console in Chrome by clicking the 3-dot icon in the upper right corner of the browser window, then selecting More Tools > Developer Tools. Click the Console tab. If you have a malformed conversion tracking code, you’ll see an “Uncaught SyntaxError” message.

Communication issues between your tags and our servers

Each time a conversion tag runs, it makes a request to the following URL, where the “XXXXXX” will be your conversion ID (this number length varies):

http://www.googleadservices.com/pagead/conversion/XXXXXXXX/

The request that's sent here includes a number of parameters—or values. You can review the requests that your tag sends to make sure it's working properly. When you do, look for these elements to confirm they match the conversion tag generated for the conversion action:

  • Conversion ID: The unique number that's specific to your Google Ads account.
  • Conversion label: The unique label that matches the name of the conversion in your Google Ads account.

Using a debugging tool like Google tag assistant, you can see the information sent between your web browser (also known as a client) and the server. This will help you examine the conversion tracking request sent by your browser and identify whether or not the correct conversion ID and label are included.

Available debugging tools

Browser Tool
All Firebug Lite
All Charles
Chrome Built-in Developer Tools (e.g. Resources)
Firefox Live HTTP Headers
Firefox Firebug
Internet Explorer Fiddler
Safari Built-in Activity window

Debugging with Chrome Developer Tools

  1. Open a new tab in Chrome.
  2. Click the 3-dot icon3 dot icon in the upper right corner of the browser window, then select More Tools > Developer Tools.
    If you don't see the Chrome menu, you can open Developer Tools by pressing Control - Shift - I keys (in Windows) or Command - Option - I (on a Mac).
  3. Click on the Network tab.
  4. Leave the developer tools window open.
  5. Navigate to the page that contains the conversion tracking tag.
  6. Look for the request: www.googleadservices.com.
  7. Examine the components of the conversion tracking request to verify it matches your account and conversion name.

Checking the conversion request

All conversion tracking requests begin with the same URL structure:

www.googleadservices.com/pagead/conversion/

The full request will look something like this:

http://www.googleadservices.com/pagead/conversion/123456789/
       
        ?

        random=1309518235472
        
        &cv=6        
        &fst=1309518235472
        &num=1
        &fmt=2
        &value=0        
        &label=AAAAAAAAAAAAAAAAAAA        
        &bg=ffffff
        &hl=it
        &guid=ON        
        &u_
        h=1200
        &u_w=1920
        &u_ah=1174&
        u_aw=1920
        &u_cd=24
        &u_his=2
        &u_tz=60
        &u_
        java=true
        &u_nplug=19
        &u_nmime=97
        &gclaw: test
        url=http%3A//www.example.com/conversion-page.html

The number after www.googleadservices.com/pagead/conversion/ should match your conversion ID, and the characters after &label= should match your conversion label. If they don't, this tag is most likely tied to a different conversion action. Note that this applies to URLs that open through the conversion page.

To fix this, you may need to generate a new conversion tag for this conversion action and place it on your site, or check with anyone else who has access to your website code to see if they've installed a conversion tracking tag for a different conversion action.

Keep in mind: If you switch to cross-account conversion tracking, any conversion actions set up in your managed accounts will stop tracking conversions for new clicks, regardless of the status of your tag. The conversion action will, within its own window, continue to track conversions for those clicks that happened before you made the switch. When you opt into cross-account conversion tracking, you can only track conversions in the manager account.

Was this helpful?

How can we improve it?
true
Achieve your advertising goals today!

Attend our Performance Max Masterclass, a livestream workshop session bringing together industry and Google ads PMax experts.

Register now

Search
Clear search
Close search
Main menu
3703135342019682740
true
Search Help Center
true
true
true
true
true
73067
false
false
false