To provide a comprehensive and consolidated view of your Audiences and make audience management and optimization simpler, you’ll find the following improvements in Google Ads:
Remarketing is one of the targeting features of personalized advertising that helps you reach people who have previously visited your website or used your mobile app. You can choose to disable the collection of remarketing data for the users who don't wish to view personalized ads. You can do so by using this parameter: allow_ad_personalization_signals
.
The default of this parameter is set to true. When you set the parameter’s value to false, it will disable the usage of the data for personalized ads.
Note: This parameter doesn't disable conversion tracking.
Edit your Google tag to disable ad personalization signalsNote:
allow_ad_personalization_signals
parameter will apply it to all products configured through the Google tag.The code below should not be copied and pasted as-is for use on your website. It contains placeholder values that your web developer must dynamically populate when they integrate the snippet code into their web server.
< ! -- Google tag (gtag.js) - Google Ads -->
<script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID"></script>
<script>
window.dataLayer = window.dataLayer | | [ ] ;
function gtag ( ) { dataLayer.push ( arguments ) } ;
gtag ('set', 'allow_ad_personalization_signals', false ) ;
gtag ( 'js', new Date ( ) ) ;
gtag ( 'config' , 'TAG_ID' ) ;
</script>
Note: If you’re using the old AdWords tag, you can set var google_allow_ad_personalization_signals = "false"
; where you set other AdWords tag parameters. See the example below for more detail.
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1234567890;
var google_conversion_label = "xxx-XXx1xXXX123X1xX";
var google_remarketing_only = false
var google_conversion_value = 10.0;
var google_conversion_currency = "USD";
var google_allow_ad_personalization_signals = false;
/* ] ] > */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
To help advertisers comply with various U.S. state privacy laws, a dedicated parameter can be added to the Google tag to indicate whether Google should enable restricted data processing (RDP): restricted_data_processing. The default of this parameter is set to false. When you set the parameter’s value to true, Google will limit how it uses certain data.
Note:
There are 2 options to enable restricted data processing in Google Ads.
restricted_data_processing
” parameter which can be set in your Google tag in Google Ads or Tag Manager, to enable restricted data processing for particular users on your site.You only need to select one of these options when you're enabling restricted data processing.
Note: This parameter doesn't disable conversion tracking.
Edit your Google tag to enable restricted data processing Note:
Note: You’ll notice a checkbox to manage data for all users located in U.S. states with regulations impacting ad targeting. You don’t need to select this since you're editing your Google tag to enable restricted data processing.
<head></head>
tags of the website.
The code below should not be copied and pasted as-is for use on your website. It contains placeholder values that your web developer must dynamically populate when they integrate the snippet code into their web server.
< ! -- Google tag (gtag.js) - Google Ads -->
<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', { 'restricted_data_processing': true } ) ;
</script>
Note: If you’re using the old AdWords tag, you can set var restricted_data_processing = "true"; where you set other AdWords tag parameters. See the example below for more detail.
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1234567890;
var google_conversion_label = "xxx-XXx1xXXX123X1xX";
var google_remarketing_only = false
var google_conversion_value = 10.0;
var google_conversion_currency = "USD";
var google_restricted_data_processing = true;
/* ] ] > */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
If you're using the AdWords API to send remarketing pings via server to server (for example, app dynamic remarketing), make sure to include the parameter rdp=1 to mark the request as restricted data processing.
Edit your Google tag in Google Tag Manager to enable restricted data processingRestricted data processing instructs Google to limit how certain data is used. If you select this option, users located in California won’t be added to your data segments.
You can choose to enable restricted data processing on a per-user basis using the restricted_data_processing parameter in your Google tag.
Read more about enabling restricted data processing in other tracking systems in Google Ads.
Was this helpful?How can we improve it?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3