Expandir la barra de logros de la comunidad.

Page View rule is not firing through out the website

Avatar

Level 1

Page view rule is not firing on any page where as other rules are working as expected , any suggestions !

3 Respuestas

Avatar

Community Advisor

Hi @purnimajena 

can you add a little more context about the rule?

  • Maybe even a screenshot?
  • How is it triggered? Through an out of the box event?
  • Are there any additional conditions?
  • Have you enabled console logging with _satellite.setDebug(true) ? This will print out information about your rules that fired or if conditions were not met
Cheers from Switzerland!


Avatar

Level 1

Hi @bjoern__koth ,

Yes i have enabled _satellite.setDebug(true) and below error is coming .

purnimajena_0-1740980887070.png

For time parsing i am using a generic code, which is working in other property

purnimajena_1-1740981021058.png

 

 

Avatar

Community Advisor

In that case you will need to install the Common Analytics Plugins extension first

bjoern__koth_0-1740987153196.png

and make sure you initialize the extension in a dedicated rule

bjoern__koth_1-1740987204924.png

 

Note though that getTimeParting is a function on the "s" instance.

So, you will have to call this instead

 

s.getTimeParting("America/New_York");

 

 

 

Cheers from Switzerland!