SlideShare a Scribd company logo
1 of 70
Download to read offline
Take your tracking to the
next level with the power of
Google Tag Manager
Rahul Agarwal
Munich, 02nd Sept. 2020
› Head of Online Marketing at
Trenkwalder Group
› Digital Strategy & Web Analytics
Consultant at Nunatak Group
› SEO/ Business Development for
CupoNation (part of Rocket
Internet)
Over 7 years of experience in Paid
Social, Web Analytics and Performance
Marketing
Who am I?
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Trenkwalder Group at Glance
applications
candidates
employees
local offices
years of experience
countries
partner
1.000.000
300.000
40.000
200
35
17
1
We are a leading HR service provider in Central & Eastern Europe with €800 Mio. turnover
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Learnings for today…
• GDPR/ Cookie Compliance
• Understanding Facebook Pixel
• Tag Manager tips & tricks to power
the Pixel
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
GDPR vs. Cookies
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Current State of Cookie
implementations in EU
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
GDPR implementation is still in grey zone
TechCrunch
~5,000 Cookie notices
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
GDPR is clear in stating that if an Internet
service is relying on consent as a legal basis to
process visitors’ personal data it must obtain
consent before processing data (so before a
tracking cookie is dropped) — and that consent
must be specific, informed and freely given.
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
“Our results show that a reasonable amount
of users are willing to engage with consent
notices, especially those who want to opt out
or do not want to opt in. Unfortunately,
current implementations do not respect this
and the large majority offers no meaningful
choice.”
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Current Cookie
Consent
Implementations
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
TechCrunch – Cookie Wall
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
TNW – Cookie Wall
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
AllFacebook
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
121Watt
Text page
Facebook pixel
is not running
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Bounteous
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Understanding Facebook Pixel
Code implementation
via. Tag Manager
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Using Tag Manager to
power the Pixel
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 1:
GDPR complaint FB Pixel
Tracking (via. website
cookie consent forms)
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Facebook allows to “revoke” and “grand” pixel access
GDPR Complaint Facebook Pixel Tracking
fbq('consent', 'revoke’);
fbq('consent', 'grant');
// Revoke consent after 'init' is called
fbq(‘Init', '<your pixel ID>’);
fbq('consent', 'revoke’);
fbq('track', 'PageView');
// Once the consent has been granted
fbq('consent', 'grant');
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
“Revoke” stays as the default option
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create cookie based on the button click
Developers Console
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a 1st Party cookie variable in Tag Manager
User defined
variable
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Fill in the cookie name as mentioned in dev. console
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
GTM variable will contain the same value as of the cookie
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
GTM Variable “1stCookie - Facebook Pixel Consent” Value
Match the variable value to “Revoke” & “Grant”
“user_denied_permission" fbq('consent', 'revoke’);
“user_gave_permission" fbq('consent', 'grant');
Facebook Pixel Code
Scenario 1: User doesn’t choose any consent
Scenario 2: User allows the consent
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Modify Pixel base code with lookup table variable
Variable value instead of “revoke” or “grant”
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
One more thing!
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
When accepted, pixel runs only on the next page (refresh)
A classic click tracking (via. Tag Manager) can solve this issue
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Run the “Grant” commant on “Zustimmen” button click
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 2:
Sending events
selectively to different
Pixels
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Sending events selectively to different Pixels
fbq('init', '<PIXEL_A>’);
fbq('init', '<PIXEL_B>’);
fbq('track', 'PageView’); //fire PageView for both initialized pixels
// only fire the Purchase event for Pixel A
fbq('trackSingle', '<PIXEL_A>', 'Purchase’, {
value: 1,
currency : EUR’,
});
// only fire the custom event ”OpenApplication” for Pixel B
fbq('trackSingleCustom', '<PIXEL_B>’, OpenApplication’,{
//optional parameters
});
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Facebook Pixel code
“out of the box”
doesn’t work!
Anymore!
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 3:
Track Internal &
External links in GTM to
create (Re)-targeting
custom audiences
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a tag that sends FB click information
Optional
1
2
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a trigger that runs on external link clicks
Runs on all pages
Everywhere except your own website
3
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Alternatively, you run it on inbound links as well
Runs on all pages
On your own website pages
3
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Test it in preview in debug mode
Event runs on external link click
Information is sent
to Facebook
4
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 4:
Delaying pixel fire on
your website
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Clicky users are expensive
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Delaying Pixel to improve data quality on Facebook
6 seconds
Fires on all pages
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Delaying Pixel to improve data quality on Facebook
Runs after 6 seconds
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 5:
Running pixel on
YouTube video view on
website
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
A classic ToFU video campaign + Custom Audience
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Enable the built-in video variables in GTM
1
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a Tag that sends video play data to FB
2
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a trigger that runs on video play percentages
4
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 6:
Installing Pageview
Counter via GTM
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a cookie that saves the page view count
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Add Pageview counter to the cookie
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a trigger for 5 or more page views
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Check the pageview’s live
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Use Case: Installing Pageview counter via. GTM
› Show visitor a custom popup’s to website visitors with offers, MailChimp signups
after they have visited of instance 5 pages
› Send custom events via this trigger to send engagement data to Facebook & Google
Analytics for better custom audiences
› Use this trigger to personalize the website/ pricing based on the pageviews user
have had
› For instance: If you have a pricing page with price calculator, you can attach the
calculator’s results (price) to that particular visitor. This way you’ll see how visitors
with different price ranges are behaving on your site.)
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 7:
Detecting & sending
user device to
Facebook
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Sending device info to Facebook Pixel
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
User-defined variable
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a lookup table variable and assign the right values
Add lookup variable to the pixel
tracking code
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Tip 8:
Use DataLayer to teach
Facebook Pixel
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Use DataLayer.push() to send infomation to Facebook
via. Google Tag Manager
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Create a new Data Layer Variable
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Save Data Layer values into the variables
Tag Manager Debug Mode
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Send dynamic values to Facebook via. variables
ViewContent – Product Page
>
DataLayer Variables
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Creating product sets with multiple rules
Use case
Branch office
Job category
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Bonus Tip:
Advanced Matching of
User Data
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Automatic Advanced Matching
Advanced Matching for Pixels
fbq('init', '{facebook-pixel-id}', {
em: ‘{{_email_}}’, // Values will be hashed
fn: ‘{{_first_name_}}’, // automatically by the pixel
ln: ‘{{_phone_number}}’ // using SHA-256
...
});
Manual Advanced Matching
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Summary
AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
Rahul Agarwal
r.agarwal@trenkwalder.com
M: +49 (0)1515 2626 540
group.trenkwalder.com
www.linkedin.com/rahulagrwl19
Thank you
for your
attention.

More Related Content

What's hot

Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Simo Ahava
 
How to Pass the Google Analytics Individual Qualification Test by Slingshot SEO
How to Pass the  Google Analytics Individual Qualification Test by Slingshot SEOHow to Pass the  Google Analytics Individual Qualification Test by Slingshot SEO
How to Pass the Google Analytics Individual Qualification Test by Slingshot SEOAarif Nazir
 
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - googleVinoaj Vijeyakumaar
 
UA and Google Tag Manager – Why & How!
UA and Google Tag Manager – Why & How!UA and Google Tag Manager – Why & How!
UA and Google Tag Manager – Why & How!Munaz Anjum
 
Post Panda: Affiliates guide to surviving Google - Daniel Bianchini
Post Panda: Affiliates guide to surviving Google - Daniel BianchiniPost Panda: Affiliates guide to surviving Google - Daniel Bianchini
Post Panda: Affiliates guide to surviving Google - Daniel Bianchiniauexpo Conference
 
Benefits of Google Tag Manager
Benefits of Google Tag ManagerBenefits of Google Tag Manager
Benefits of Google Tag ManagerPhil Pearce
 
Google Analytics - Webmaster Tools Pro Setup & Tips
Google Analytics -  Webmaster Tools Pro Setup & TipsGoogle Analytics -  Webmaster Tools Pro Setup & Tips
Google Analytics - Webmaster Tools Pro Setup & TipsRank Fuse Digital Marketing
 
What to Expect from the Google Analytics Exam 2014
What to Expect from the Google Analytics Exam 2014What to Expect from the Google Analytics Exam 2014
What to Expect from the Google Analytics Exam 2014IndigoVerge
 
How Google Tag Manager changes everything you knew about website analytics
How Google Tag Manager changes everything you knew about website analyticsHow Google Tag Manager changes everything you knew about website analytics
How Google Tag Manager changes everything you knew about website analyticsMontgomery Webster
 
TechSEO Boost 2021 - SEO Experimentation
TechSEO Boost 2021 - SEO ExperimentationTechSEO Boost 2021 - SEO Experimentation
TechSEO Boost 2021 - SEO ExperimentationCatalyst
 
Google algorithm Updates-Latest Google SEO updates
Google algorithm Updates-Latest Google SEO updatesGoogle algorithm Updates-Latest Google SEO updates
Google algorithm Updates-Latest Google SEO updatesManasaKodithala
 
Track Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsTrack Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsEmpirical Path
 
How to Recover from Google Phantom 2 | Position2
How to Recover from Google Phantom 2 | Position2How to Recover from Google Phantom 2 | Position2
How to Recover from Google Phantom 2 | Position2Position2
 
Google analytics 201 - goals, events, views, basic filters, segments, alerts...
Google analytics 201  - goals, events, views, basic filters, segments, alerts...Google analytics 201  - goals, events, views, basic filters, segments, alerts...
Google analytics 201 - goals, events, views, basic filters, segments, alerts...ivantage
 
SEO News Roundup JAN 2015
SEO News Roundup JAN 2015SEO News Roundup JAN 2015
SEO News Roundup JAN 2015Saijo George
 
13 GoMeasure (sg) - google analytics certified partner program - timo joste...
13   GoMeasure (sg) - google analytics certified partner program - timo joste...13   GoMeasure (sg) - google analytics certified partner program - timo joste...
13 GoMeasure (sg) - google analytics certified partner program - timo joste...Vinoaj Vijeyakumaar
 
Google Tag Manager Flash Tips @ MeasureCamp
Google Tag Manager Flash Tips @ MeasureCampGoogle Tag Manager Flash Tips @ MeasureCamp
Google Tag Manager Flash Tips @ MeasureCampPhil Pearce
 
George Brown's Google Sniper
George Brown's Google SniperGeorge Brown's Google Sniper
George Brown's Google Sniperwound0girl
 
Google freshness update
Google freshness updateGoogle freshness update
Google freshness updatechris_louis
 
Google Analytics Implementation for Agencies and Companies
Google Analytics Implementation for Agencies and CompaniesGoogle Analytics Implementation for Agencies and Companies
Google Analytics Implementation for Agencies and CompaniesBen Holland
 

What's hot (20)

Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?
 
How to Pass the Google Analytics Individual Qualification Test by Slingshot SEO
How to Pass the  Google Analytics Individual Qualification Test by Slingshot SEOHow to Pass the  Google Analytics Individual Qualification Test by Slingshot SEO
How to Pass the Google Analytics Individual Qualification Test by Slingshot SEO
 
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
 
UA and Google Tag Manager – Why & How!
UA and Google Tag Manager – Why & How!UA and Google Tag Manager – Why & How!
UA and Google Tag Manager – Why & How!
 
Post Panda: Affiliates guide to surviving Google - Daniel Bianchini
Post Panda: Affiliates guide to surviving Google - Daniel BianchiniPost Panda: Affiliates guide to surviving Google - Daniel Bianchini
Post Panda: Affiliates guide to surviving Google - Daniel Bianchini
 
Benefits of Google Tag Manager
Benefits of Google Tag ManagerBenefits of Google Tag Manager
Benefits of Google Tag Manager
 
Google Analytics - Webmaster Tools Pro Setup & Tips
Google Analytics -  Webmaster Tools Pro Setup & TipsGoogle Analytics -  Webmaster Tools Pro Setup & Tips
Google Analytics - Webmaster Tools Pro Setup & Tips
 
What to Expect from the Google Analytics Exam 2014
What to Expect from the Google Analytics Exam 2014What to Expect from the Google Analytics Exam 2014
What to Expect from the Google Analytics Exam 2014
 
How Google Tag Manager changes everything you knew about website analytics
How Google Tag Manager changes everything you knew about website analyticsHow Google Tag Manager changes everything you knew about website analytics
How Google Tag Manager changes everything you knew about website analytics
 
TechSEO Boost 2021 - SEO Experimentation
TechSEO Boost 2021 - SEO ExperimentationTechSEO Boost 2021 - SEO Experimentation
TechSEO Boost 2021 - SEO Experimentation
 
Google algorithm Updates-Latest Google SEO updates
Google algorithm Updates-Latest Google SEO updatesGoogle algorithm Updates-Latest Google SEO updates
Google algorithm Updates-Latest Google SEO updates
 
Track Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsTrack Report & Optimize Your Web Creations
Track Report & Optimize Your Web Creations
 
How to Recover from Google Phantom 2 | Position2
How to Recover from Google Phantom 2 | Position2How to Recover from Google Phantom 2 | Position2
How to Recover from Google Phantom 2 | Position2
 
Google analytics 201 - goals, events, views, basic filters, segments, alerts...
Google analytics 201  - goals, events, views, basic filters, segments, alerts...Google analytics 201  - goals, events, views, basic filters, segments, alerts...
Google analytics 201 - goals, events, views, basic filters, segments, alerts...
 
SEO News Roundup JAN 2015
SEO News Roundup JAN 2015SEO News Roundup JAN 2015
SEO News Roundup JAN 2015
 
13 GoMeasure (sg) - google analytics certified partner program - timo joste...
13   GoMeasure (sg) - google analytics certified partner program - timo joste...13   GoMeasure (sg) - google analytics certified partner program - timo joste...
13 GoMeasure (sg) - google analytics certified partner program - timo joste...
 
Google Tag Manager Flash Tips @ MeasureCamp
Google Tag Manager Flash Tips @ MeasureCampGoogle Tag Manager Flash Tips @ MeasureCamp
Google Tag Manager Flash Tips @ MeasureCamp
 
George Brown's Google Sniper
George Brown's Google SniperGeorge Brown's Google Sniper
George Brown's Google Sniper
 
Google freshness update
Google freshness updateGoogle freshness update
Google freshness update
 
Google Analytics Implementation for Agencies and Companies
Google Analytics Implementation for Agencies and CompaniesGoogle Analytics Implementation for Agencies and Companies
Google Analytics Implementation for Agencies and Companies
 

Similar to Take your tracking to the next level with the power of Google Tag Manager #AFBMC

Google Panda Detection / Recovery
Google Panda Detection / RecoveryGoogle Panda Detection / Recovery
Google Panda Detection / RecoveryWilliam Rock
 
Clickminded Agency Growth SOP Toolkit
Clickminded Agency Growth SOP ToolkitClickminded Agency Growth SOP Toolkit
Clickminded Agency Growth SOP ToolkitClickMinded
 
Columbus Web Analytics Wednesday - Google Analytics 4
Columbus Web Analytics Wednesday - Google Analytics 4Columbus Web Analytics Wednesday - Google Analytics 4
Columbus Web Analytics Wednesday - Google Analytics 4Tim Wilson
 
Google Search & Tool Updates September
Google Search & Tool Updates SeptemberGoogle Search & Tool Updates September
Google Search & Tool Updates SeptemberIn Marketing We Trust
 
Google Analytics Products Overview 2020
Google Analytics Products Overview 2020Google Analytics Products Overview 2020
Google Analytics Products Overview 2020Principle America
 
[Webinar] Deep Dive in App Analytics
[Webinar] Deep Dive in App Analytics[Webinar] Deep Dive in App Analytics
[Webinar] Deep Dive in App AnalyticsTatvic Analytics
 
🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences GuideŞahin Seçil
 
Google analytics summit 2013 in 13 slides
Google analytics summit 2013  in 13 slidesGoogle analytics summit 2013  in 13 slides
Google analytics summit 2013 in 13 slidesIntan Andini
 
Google Analytics Resources
Google Analytics ResourcesGoogle Analytics Resources
Google Analytics ResourcesGoogle A/NZ
 
Peak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePeak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePaul Drägert
 
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdf
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdfColumbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdf
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdfTim Wilson
 
Google new solutions for 2014 Q3
Google new solutions for 2014 Q3Google new solutions for 2014 Q3
Google new solutions for 2014 Q3Web Manager Service
 
Google Analytics Report Automation (Magic)
Google Analytics Report Automation (Magic) Google Analytics Report Automation (Magic)
Google Analytics Report Automation (Magic) Keshav Kashyap
 
Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Keshav Kashyap
 
Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Keshav Kashyap
 
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupGoogle Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupRich Plakas
 

Similar to Take your tracking to the next level with the power of Google Tag Manager #AFBMC (20)

ga4.pdf
ga4.pdfga4.pdf
ga4.pdf
 
ga4.pdf
ga4.pdfga4.pdf
ga4.pdf
 
Google Panda Detection / Recovery
Google Panda Detection / RecoveryGoogle Panda Detection / Recovery
Google Panda Detection / Recovery
 
Clickminded Agency Growth SOP Toolkit
Clickminded Agency Growth SOP ToolkitClickminded Agency Growth SOP Toolkit
Clickminded Agency Growth SOP Toolkit
 
Columbus Web Analytics Wednesday - Google Analytics 4
Columbus Web Analytics Wednesday - Google Analytics 4Columbus Web Analytics Wednesday - Google Analytics 4
Columbus Web Analytics Wednesday - Google Analytics 4
 
Google Search & Tool Updates September
Google Search & Tool Updates SeptemberGoogle Search & Tool Updates September
Google Search & Tool Updates September
 
GMP SYDNEY
GMP SYDNEYGMP SYDNEY
GMP SYDNEY
 
Google Analytics Products Overview 2020
Google Analytics Products Overview 2020Google Analytics Products Overview 2020
Google Analytics Products Overview 2020
 
Google Analytics Overview
Google Analytics OverviewGoogle Analytics Overview
Google Analytics Overview
 
[Webinar] Deep Dive in App Analytics
[Webinar] Deep Dive in App Analytics[Webinar] Deep Dive in App Analytics
[Webinar] Deep Dive in App Analytics
 
🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide
 
Google analytics summit 2013 in 13 slides
Google analytics summit 2013  in 13 slidesGoogle analytics summit 2013  in 13 slides
Google analytics summit 2013 in 13 slides
 
Google Analytics Resources
Google Analytics ResourcesGoogle Analytics Resources
Google Analytics Resources
 
Peak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePeak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 Update
 
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdf
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdfColumbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdf
Columbus WAW 2022 - How GA4 can Help You Navigate a Cookie-Restricted World.pdf
 
Google new solutions for 2014 Q3
Google new solutions for 2014 Q3Google new solutions for 2014 Q3
Google new solutions for 2014 Q3
 
Google Analytics Report Automation (Magic)
Google Analytics Report Automation (Magic) Google Analytics Report Automation (Magic)
Google Analytics Report Automation (Magic)
 
Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)
 
Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)Google Analytics Report Automation (Magic Script)
Google Analytics Report Automation (Magic Script)
 
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupGoogle Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
 

More from AllFacebook.de

„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...
„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...
„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...AllFacebook.de
 
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...AllFacebook.de
 
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...AllFacebook.de
 
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMC
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMCTikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMC
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMCAllFacebook.de
 
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...AllFacebook.de
 
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMC
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMCWie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMC
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMCAllFacebook.de
 
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...AllFacebook.de
 
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMC
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMCExperimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMC
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMCAllFacebook.de
 
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMC
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMCGeheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMC
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMCAllFacebook.de
 
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...AllFacebook.de
 
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMC
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMCOnlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMC
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMCAllFacebook.de
 
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMCAllFacebook.de
 
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...AllFacebook.de
 
Social Media, Boomer? Es wird ernst! #AFBMC
Social Media, Boomer? Es wird ernst! #AFBMCSocial Media, Boomer? Es wird ernst! #AFBMC
Social Media, Boomer? Es wird ernst! #AFBMCAllFacebook.de
 
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...AllFacebook.de
 
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...AllFacebook.de
 
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...AllFacebook.de
 
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMC
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMCDas Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMC
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMCAllFacebook.de
 

More from AllFacebook.de (20)

„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...
„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...
„New Work“ im Tagesschau Social-Media Team. Learnings aus 6 Monaten Arbeiten ...
 
Grow Up. Finally.
Grow Up. Finally.Grow Up. Finally.
Grow Up. Finally.
 
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...
So nutzt du die ganze Power des Algorithmus: Katalog-Setup für Fortgeschritte...
 
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...
12 Hacks für deine Instagram Ads - mit diesen Tipps steigerst du deine Perfor...
 
Instagram 2020 #AFBMC
Instagram 2020 #AFBMCInstagram 2020 #AFBMC
Instagram 2020 #AFBMC
 
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMC
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMCTikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMC
TikTok for Humanity: Das Rote Kreuz für Generation Z #AFBMC
 
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...
Von der Krise in die Krise aus der Krise - Social Media & Krisenkommunikation...
 
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMC
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMCWie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMC
Wie du die Landingpages auf die Facebook Zielgruppen abstimmst #AFBMC
 
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...
Wer braucht schon den (client-side) FB Pixel? Warum du auf Facebooks serverse...
 
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMC
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMCExperimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMC
Experimente mit dem Algorithmus - so kriegt man Reichweite auf LinkedIn #AFBMC
 
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMC
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMCGeheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMC
Geheimzutat Social Media: Das Erfolgsrezept von Sternekoch Alexander Kunz #AFBMC
 
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...
Love Social - Social love. Eine Liebeserklärung an Social Media, die Diversit...
 
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMC
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMCOnlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMC
Onlinemarketing on the Edge - 100.000 Euro Bußgeld für ein Cookie? #AFBMC
 
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC
15+ Möglichkeiten mit Deiner Facebook-Gruppe Geld zu verdienen #AFBMC
 
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...
Shop, Shoppen, Instagram Shopping: Was ist State of The Art und was kommt noc...
 
Social Media, Boomer? Es wird ernst! #AFBMC
Social Media, Boomer? Es wird ernst! #AFBMCSocial Media, Boomer? Es wird ernst! #AFBMC
Social Media, Boomer? Es wird ernst! #AFBMC
 
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...
„Alexa, wo kann ich heute kontaktlos mit Freunden shoppen?“ - Wie Voice das M...
 
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...
So synchronisierst du automatisiert Google Analytics Segmente zu Facebook Aud...
 
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...
WhatsApp 2020!? Das Messenger Marketing Update - was ihr 2020/21 umsetzen kön...
 
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMC
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMCDas Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMC
Das Influencer-O-Meter: Wie gut ist ein Influencer und warum? #AFBMC
 

Take your tracking to the next level with the power of Google Tag Manager #AFBMC

  • 1. Take your tracking to the next level with the power of Google Tag Manager Rahul Agarwal Munich, 02nd Sept. 2020
  • 2. › Head of Online Marketing at Trenkwalder Group › Digital Strategy & Web Analytics Consultant at Nunatak Group › SEO/ Business Development for CupoNation (part of Rocket Internet) Over 7 years of experience in Paid Social, Web Analytics and Performance Marketing Who am I?
  • 3. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Trenkwalder Group at Glance applications candidates employees local offices years of experience countries partner 1.000.000 300.000 40.000 200 35 17 1 We are a leading HR service provider in Central & Eastern Europe with €800 Mio. turnover
  • 4. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Learnings for today… • GDPR/ Cookie Compliance • Understanding Facebook Pixel • Tag Manager tips & tricks to power the Pixel
  • 5. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal GDPR vs. Cookies
  • 6. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Current State of Cookie implementations in EU
  • 7. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal GDPR implementation is still in grey zone TechCrunch ~5,000 Cookie notices
  • 8. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal GDPR is clear in stating that if an Internet service is relying on consent as a legal basis to process visitors’ personal data it must obtain consent before processing data (so before a tracking cookie is dropped) — and that consent must be specific, informed and freely given.
  • 9. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal “Our results show that a reasonable amount of users are willing to engage with consent notices, especially those who want to opt out or do not want to opt in. Unfortunately, current implementations do not respect this and the large majority offers no meaningful choice.”
  • 10. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Current Cookie Consent Implementations
  • 11. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal TechCrunch – Cookie Wall
  • 12. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal TNW – Cookie Wall
  • 13. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal AllFacebook
  • 14. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal 121Watt Text page Facebook pixel is not running
  • 15. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Bounteous
  • 16. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Understanding Facebook Pixel Code implementation via. Tag Manager
  • 17. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
  • 18. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
  • 19. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Using Tag Manager to power the Pixel
  • 20. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 1: GDPR complaint FB Pixel Tracking (via. website cookie consent forms)
  • 21. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Facebook allows to “revoke” and “grand” pixel access GDPR Complaint Facebook Pixel Tracking fbq('consent', 'revoke’); fbq('consent', 'grant'); // Revoke consent after 'init' is called fbq(‘Init', '<your pixel ID>’); fbq('consent', 'revoke’); fbq('track', 'PageView'); // Once the consent has been granted fbq('consent', 'grant');
  • 22. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal “Revoke” stays as the default option
  • 23. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create cookie based on the button click Developers Console
  • 24. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a 1st Party cookie variable in Tag Manager User defined variable
  • 25. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Fill in the cookie name as mentioned in dev. console
  • 26. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal GTM variable will contain the same value as of the cookie
  • 27. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal GTM Variable “1stCookie - Facebook Pixel Consent” Value Match the variable value to “Revoke” & “Grant” “user_denied_permission" fbq('consent', 'revoke’); “user_gave_permission" fbq('consent', 'grant'); Facebook Pixel Code Scenario 1: User doesn’t choose any consent Scenario 2: User allows the consent
  • 28. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Modify Pixel base code with lookup table variable Variable value instead of “revoke” or “grant”
  • 29. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal One more thing!
  • 30. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal When accepted, pixel runs only on the next page (refresh) A classic click tracking (via. Tag Manager) can solve this issue
  • 31. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Run the “Grant” commant on “Zustimmen” button click
  • 32. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 2: Sending events selectively to different Pixels
  • 33. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Sending events selectively to different Pixels fbq('init', '<PIXEL_A>’); fbq('init', '<PIXEL_B>’); fbq('track', 'PageView’); //fire PageView for both initialized pixels // only fire the Purchase event for Pixel A fbq('trackSingle', '<PIXEL_A>', 'Purchase’, { value: 1, currency : EUR’, }); // only fire the custom event ”OpenApplication” for Pixel B fbq('trackSingleCustom', '<PIXEL_B>’, OpenApplication’,{ //optional parameters });
  • 34. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Facebook Pixel code “out of the box” doesn’t work! Anymore!
  • 35. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 3: Track Internal & External links in GTM to create (Re)-targeting custom audiences
  • 36. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a tag that sends FB click information Optional 1 2
  • 37. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a trigger that runs on external link clicks Runs on all pages Everywhere except your own website 3
  • 38. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Alternatively, you run it on inbound links as well Runs on all pages On your own website pages 3
  • 39. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Test it in preview in debug mode Event runs on external link click Information is sent to Facebook 4
  • 40. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 4: Delaying pixel fire on your website
  • 41. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Clicky users are expensive
  • 42. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Delaying Pixel to improve data quality on Facebook 6 seconds Fires on all pages
  • 43. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Delaying Pixel to improve data quality on Facebook Runs after 6 seconds
  • 44. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 5: Running pixel on YouTube video view on website
  • 45. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal A classic ToFU video campaign + Custom Audience
  • 46. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Enable the built-in video variables in GTM 1
  • 47. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a Tag that sends video play data to FB 2
  • 48. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a trigger that runs on video play percentages 4
  • 49. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
  • 50. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 6: Installing Pageview Counter via GTM
  • 51. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a cookie that saves the page view count
  • 52. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Add Pageview counter to the cookie
  • 53. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a trigger for 5 or more page views
  • 54. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Check the pageview’s live
  • 55. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Use Case: Installing Pageview counter via. GTM › Show visitor a custom popup’s to website visitors with offers, MailChimp signups after they have visited of instance 5 pages › Send custom events via this trigger to send engagement data to Facebook & Google Analytics for better custom audiences › Use this trigger to personalize the website/ pricing based on the pageviews user have had › For instance: If you have a pricing page with price calculator, you can attach the calculator’s results (price) to that particular visitor. This way you’ll see how visitors with different price ranges are behaving on your site.)
  • 56. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 7: Detecting & sending user device to Facebook
  • 57. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Sending device info to Facebook Pixel
  • 58. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal User-defined variable
  • 59. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a lookup table variable and assign the right values Add lookup variable to the pixel tracking code
  • 60. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Tip 8: Use DataLayer to teach Facebook Pixel
  • 61. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal
  • 62. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Use DataLayer.push() to send infomation to Facebook via. Google Tag Manager
  • 63. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Create a new Data Layer Variable
  • 64. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Save Data Layer values into the variables Tag Manager Debug Mode
  • 65. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Send dynamic values to Facebook via. variables ViewContent – Product Page > DataLayer Variables
  • 66. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Creating product sets with multiple rules Use case Branch office Job category
  • 67. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Bonus Tip: Advanced Matching of User Data
  • 68. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Automatic Advanced Matching Advanced Matching for Pixels fbq('init', '{facebook-pixel-id}', { em: ‘{{_email_}}’, // Values will be hashed fn: ‘{{_first_name_}}’, // automatically by the pixel ln: ‘{{_phone_number}}’ // using SHA-256 ... }); Manual Advanced Matching
  • 69. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Summary
  • 70. AllFacebook Advance · Power FB Pixel with Google Tag Manager · Rahul Agarwal Rahul Agarwal r.agarwal@trenkwalder.com M: +49 (0)1515 2626 540 group.trenkwalder.com www.linkedin.com/rahulagrwl19 Thank you for your attention.