Your customer ID is a unique number used to identify your Google Ads account. You can also use this number to connect your account with other Google products, such as Google Analytics or Business Profile. This article will show you how to locate your customer ID.
Tips
Instructions
Users with administrative access to the invited account, or access to a linked manager account that has administrative ownership of that account, can accept your request. You can find, accept or decline linking requests using the following steps:
Under ‘Actions’, click Accept.
By sharing access to your Google Ads account, you can work with other people in your business on the same Google Ads account. Once you’ve granted access, you can edit a user’s access level, or you can always remove access later on.
Please send us your customer ID (Find Your Customer ID) for Google ads account and we can send a user request OR you can invite us as an admin to your Google Ads Account by following the steps:
Our emails
Give Access to People in Google Ads Account
To access your account, the person that you invite must have a Google Account or create one.
How to accept access
You’ll receive a confirmation email if someone invites you to access a Google Ads account. To accept the invitation, click the appropriate link in the email and complete the steps that follow.
How to remove access
How to edit access level
Sometimes, Google may reject an ad because of their Event Tickets Sale Policy. It can easily get approved if you provide any of the following:
In some cases, Google asks for a contract between your organisation and the venue, which will need to be provided upon request.
Alternatively, you may fill this application form and, in that case, there will be no need to send the documentation to Milestone for us to organise with Google.
Entering billing information for the first time
After you’ve created a Google Ads account, here’s how to enter your billing information:
Updating billing information already set up
Update Your Card’s Expiry Date or Nickname
You can edit the expiry date and the payment method nickname if your payment method account number isn’t changing (instead of re-entering all of your payment method information).
Update Your Payment Profile Information
You can edit the information in your payments profile. Bear in mind that what you can edit in your payments profile depends on your specific payment setting and your billing country. Learn more about payment profiles
Step 1.0. Install WordPress Plugin HFCM
There are two parts of the Google Conversion Tag:
Step 2.0. (If not already done. It needs to be only completed once)
Global site tag to be placed in the header of the whole website as a javascript code, if not already placed.
Step 3.0. Adding Event Snippet as a Javascript code to the header of the page(s) where it is needed
Event snippet placement is dependent on how the conversion is recorded, whether it is through the page load method, for example, a thank you page OR it can be on a button click, for example, contact form submit button.
Step 3.1. Event Snippet for Page Load
Add the snippet to the page that a customer reaches after completing a conversion
Copy the snippet from the Google Conversion Tag and paste it in between the <head></head> tags of the page(s) that you’d like to track, right after the global site tag
OR
Step 3.2. Event Snippet for Click
Add the snippet to the page(s) as a javascript code that has a button or a link that you’d like to track for clicks
Copy the snippet from Google Conversion Tag and paste it in between the <head></head> tags of the page(s) that you’d like to track, right after the global site tag. Then, call gtag_report_conversion when someone clicks on the chosen link or button.
3.2.1. How to call gtag_report_conversion for contact form 7 submit button?
For ‘contact form 7’ submit button
<script>
document.addEventListener( ‘wpcf7mailsent’, function( event ) { gtag_report_conversion(); }, false );
</script>
3.2.2. How to call gtag_report_conversion for a text link?
This code shows you how to add click tracking functionality to a link using the <a> tag. In the code below, replace ‘http://example.com/your-link’ with the destination URL of your link or ‘800-123-4567’ with the phone number on your website and ‘Download now!’ or ‘Call now!’ with your link text. The code that should be added to the link tag is highlighted in yellow.
<a onclick=”return gtag_report_conversion(‘http://example.com/your-link’);”
href=”http://example.com/your-link”>Download now!</a>
or
<a onclick=”return gtag_report_conversion(‘tel:800-123-4567’);” href=”tel:800-123-4567″>Call now!</a>
3.2.3. How to call gtag_report_conversion for a button?
This code shows you how to add click tracking functionality to a button using the <button> tag. In the code below, replace “http://example.com/your-link” with the destination URL of your link or “800-123-4567” with the phone number on your website.
<button onclick=”return gtag_report_conversion(‘http://example.com/your-link’)”>Submit</button>
or
<button onclick=”return gtag_report_conversion(‘tel:800-123-4567’)”>Call now!</button>
3.2.4. How to call gtag_report_conversion for a button image?
In the code below, replace ‘download_button.gif’ with your button image, replace the width and height with your button’s parameters and replace ‘http://example.com/your-link’ with the URL for your link or ‘800-123-4567’ with the phone number on your website.
<img src=”download_button.gif” alt=”Download Whitepaper”
width=”32″ height=”32″
onclick=”return gtag_report_conversion(‘http://example.com/your-link’)” />
or
<img src=”call_button.gif” alt=”Call now!”
width=”32″ height=”32″
onclick=”return gtag_report_conversion(‘tel:800-123-4567’)” />
For conversion tracking to work, you’ll need to add both the event snippet and the appropriate onclick code from one of the examples above to the page that has the link or button. This tells Google Ads to record a conversion only when a customer clicks on the link or button.
Important
Your website must call the ‘gtag_report_conversion’ function when someone clicks on the link, button or button image, and pass your website or telephone link (e.g. “http://example.com/your-link”, ‘tel:800-123-4567’) as the parameter value.
Click here for more info on installing tracking codes.
Click here for more info on configuring tracking codes with Google Tag Manager.