semkrk #1 - tomasz trzósło

50
Google Tag Manager Tomasz Trzósło - ROIEXPERTS.pl 1

Upload: semkrk

Post on 14-Feb-2017

220 views

Category:

Internet


1 download

TRANSCRIPT

Page 1: semKRK #1 - Tomasz Trzósło

Google Tag Manager Tomasz Trzósło - ROIEXPERTS.pl

1

Page 2: semKRK #1 - Tomasz Trzósło

2

Page 3: semKRK #1 - Tomasz Trzósło

3

Page 4: semKRK #1 - Tomasz Trzósło

4

Page 5: semKRK #1 - Tomasz Trzósło

5

Page 6: semKRK #1 - Tomasz Trzósło

6

Page 7: semKRK #1 - Tomasz Trzósło

Jak to działa?

7

Page 8: semKRK #1 - Tomasz Trzósło

Kod Tag Manager

8

Page 9: semKRK #1 - Tomasz Trzósło

<body> vs <head>

9

Page 10: semKRK #1 - Tomasz Trzósło

GTM - Dlaczego?

10

Page 11: semKRK #1 - Tomasz Trzósło

11

Page 12: semKRK #1 - Tomasz Trzósło

Dlaczego GTM? Ominięcie IT

12

Page 13: semKRK #1 - Tomasz Trzósło

Dlaczego GTM? Łatwość Implementacji

Wprowadzanie zmian

13

Page 14: semKRK #1 - Tomasz Trzósło

14

Page 15: semKRK #1 - Tomasz Trzósło

Dlaczego GTM? Szybkość działania strony

15

Page 16: semKRK #1 - Tomasz Trzósło

Dlaczego GTM? Gwarancja tagowania każdej

strony

16

Page 17: semKRK #1 - Tomasz Trzósło

Kod Tag Manager

17

TAG = CO?REGUŁA = KIEDY?

Page 18: semKRK #1 - Tomasz Trzósło

Kod Analytics

18

Page 19: semKRK #1 - Tomasz Trzósło

19

Page 20: semKRK #1 - Tomasz Trzósło

Przykład

1

Google Analytics

Remarketing Adwords

Konwersje Adwords

Fb Pixel

2

Wysłanie formularza

Kliknięcie w mailto

Kliknięcie w nr telefonu

Kliknięcie w baner

Śledzenie linków wychodzących

3

Tag Ecommerce

Chat na stronie

Youtube

Scrolowania strony

Popup20

Page 21: semKRK #1 - Tomasz Trzósło

Banalne

21

Page 22: semKRK #1 - Tomasz Trzósło

<!-- Kod tagu remarketingowego Google -->

<!--------------------------------------------------

Tagi remarketingowe nie mogą być wiązane z informacjami umożliwiającymi identyfikację osób ani umieszczane na stronach o tematyce należącej do kategorii kontrowersyjnych. Więcej informacji oraz instrukcje konfiguracji tagu znajdziesz tutaj: http://google.com/ads/remarketingsetup

--------------------------------------------------->

<script type="text/javascript">

/* <![CDATA[ */

var google_conversion_id = 945745650;

var google_custom_params = window.google_tag_params;

var google_remarketing_only = true;

/* ]]> */

</script>

<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">

</script>

<noscript>

<div style="display:inline;">

<img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/945745650/?value=0&amp;guid=ON&amp;script=0"/>

</div>

</noscript>

22

Page 23: semKRK #1 - Tomasz Trzósło

<!-- Facebook Pixel Code -->

<script>

!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?

n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;

n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0</noscript>

<!-- End Facebook Pixel Code -->

23

Page 24: semKRK #1 - Tomasz Trzósło

<!-- KodKonwersji Google Adwords -->

<script type="text/javascript">

/* <![CDATA[ */

var google_conversion_id = 945745650;

var google_custom_params = window.google_tag_params;

var google_remarketing_only = true;

/* ]]> */

</script>

<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">

24

Page 25: semKRK #1 - Tomasz Trzósło

25

Page 26: semKRK #1 - Tomasz Trzósło

Tag: Google Analytics

Reguła: uruchom na wszystkich stronach

Tag: FB Pixel - Niestandardowy Tag

Reguła: uruchom na wszystkich stronach

Tag: Remarketing Adwords

Reguła: Uruchom na wszystkich stronach

Tag: Konwersje Adwords

Reguła: Uruchom na konkretnej stronie/po konkretnej akcji

Kod Analytics/Adwords

26

Page 27: semKRK #1 - Tomasz Trzósło

2-427

Page 28: semKRK #1 - Tomasz Trzósło

Nie Tak Banalne

28

Page 29: semKRK #1 - Tomasz Trzósło

Kod Zdarzenia Analytics

ga('send', 'event', 'Videos', 'play', 'Fall Campaign');

Kod Zdarzenia gtm - śledzone automatycznie

Zdarzenia np kliknięcie w link zewnętrzny

29

Page 30: semKRK #1 - Tomasz Trzósło

30

Page 31: semKRK #1 - Tomasz Trzósło

31

Page 32: semKRK #1 - Tomasz Trzósło

(konieczna konfiguracja tagów)

Kliknięcia

Kliknięcia w linki

Wysłane Formularze

Automatyczne Zdarzenia

32

Page 33: semKRK #1 - Tomasz Trzósło

4-633

Page 34: semKRK #1 - Tomasz Trzósło

Zupełnie Niebanalne

34

Page 35: semKRK #1 - Tomasz Trzósło

Data Layer - Tag Manager

dataLayer.push({'event': 'event_name'});<a href="#" name="button1" onclick="dataLayer.push({'event': 'button1-click'});" >Button 1</a>

Zdarzenie Analytics

ga('send', 'event', 'Videos', 'play', 'Fall Campaign');

Data Layer

35

Page 36: semKRK #1 - Tomasz Trzósło

Niestandardowy Tag + Java Script

36

Page 37: semKRK #1 - Tomasz Trzósło

Youtube

37

http://www.lunametrics.com/blog/2015/05/11/updated-youtube-tracking-google-analytics-gtm/

Page 38: semKRK #1 - Tomasz Trzósło

Mierzenie Scrollowania Strony

38

https://www.optimizesmart.com/implementing-scroll-tracking-via-google-tag-manager/http://beczkowski.com/post/mierzenie-glebokosci-scrollowania-strony/

Page 39: semKRK #1 - Tomasz Trzósło

https://www.livechatinc.com/kb/google-tag-manager/#installation

Chat na stronie

39

Page 40: semKRK #1 - Tomasz Trzósło

http://marthijnhoiting.com/create-exit-popup-with-google-tag-manager/#http://roiexperts.pl/semkrk/

Niestandardowe 2 - Popup

40

Page 41: semKRK #1 - Tomasz Trzósło

?41

Page 42: semKRK #1 - Tomasz Trzósło

Nieprzekonani?

42

Page 43: semKRK #1 - Tomasz Trzósło

43

Page 44: semKRK #1 - Tomasz Trzósło

44

Page 45: semKRK #1 - Tomasz Trzósło

Jak oszczędzić dodatkowo 70%?

45

Page 46: semKRK #1 - Tomasz Trzósło

46

Page 47: semKRK #1 - Tomasz Trzósło

47

Page 48: semKRK #1 - Tomasz Trzósło

5-10x48

Page 49: semKRK #1 - Tomasz Trzósło

49

Page 50: semKRK #1 - Tomasz Trzósło

Bonus: ROIexperts.pl/semkrk

50