Skip to main content
EricGustafson
Level 2
October 28, 2019
Beantwortet

getVisitStart function or Page = 1 for Visit first page?

  • October 28, 2019
  • 1 Antwort
  • 2880 Ansichten

We are trying to limit a DTM rule to fire on the first page of the visit only. What is the definitive way to configure this using DTM?

Dieses Thema wurde für Antworten geschlossen.
Beste Antwort von mayankr87420749

It can be done by checking and setting a cookie in two steps

For example:

Step1: Check for a cookie "firstVisit"(you can assign any random name) when a visitor lands on the first page.

the DTM rule will be triggered when it does not found the cookie(you can use custom code)

Step2: Create another tag on window load which sets the cookie which you were searching for in the first tag and was not set, this will ensure that the first tag doesn't fire on the next pages or reload.

 

Make sure step 2 triggers only after step1 is triggered 

1 Antwort

December 26, 2019

It can be done by checking and setting a cookie in two steps

For example:

Step1: Check for a cookie "firstVisit"(you can assign any random name) when a visitor lands on the first page.

the DTM rule will be triggered when it does not found the cookie(you can use custom code)

Step2: Create another tag on window load which sets the cookie which you were searching for in the first tag and was not set, this will ensure that the first tag doesn't fire on the next pages or reload.

 

Make sure step 2 triggers only after step1 is triggered