Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
Niveau 1
Niveau 2
Se connecter à la communauté
Connectez-vous pour voir tous les badges
Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
We use a different direct call rule for different types of 'pages' on our single page app that send data to Analytics. I have a pixel rule that I want to fire after any direct call rule fires. Does anybody know how this can be accomplished?
Résolu ! Accéder à la solution.
Vues
Réponses
Nombre de J’aime
What you can do is for every direct call listener that you have, have it fire ANOTHER direct call that fires a universal rule.
Let's say you have 3 direct calls
Then they all link to the universal direct call which has an action like: _satellite.track("universalDirectCall");
Then from there, you create a new rule:
You have more control over when and what and how the pixel gets fired and also has the pixel code only in one place.
I don't believe there is a way to fire "after any direct call". But you may find it helpful to use the below:
s.registerPostTrackCallback(function(){
//Code run after every beacon
});
Vues
Réponses
Nombre de J’aime
Vues
Réponses
Nombre de J’aime
Thanks Brandon,
I will see if I can determine how to make this work. I would not want it to fire after any of the other beacon calls we have, only those that send to analytics from our direct call rules.
Is it possible to have several rules that fire from the same direct call rule?
Vues
Réponses
Nombre de J’aime
There is no mechanism to define Rule Actions that should occur for any direct call rule. You'd simply need to add the Action to any of the Rules you have that use Direct Call as the Event.
Vues
Réponses
Nombre de J’aime
Direct call rule fires will have Action, you can place the pixel after sending the page.
Vues
Réponses
Nombre de J’aime
What you can do is for every direct call listener that you have, have it fire ANOTHER direct call that fires a universal rule.
Let's say you have 3 direct calls
Then they all link to the universal direct call which has an action like: _satellite.track("universalDirectCall");
Then from there, you create a new rule:
You have more control over when and what and how the pixel gets fired and also has the pixel code only in one place.
Vues
Réponses
Nombre de J’aime
Vues
Likes
Réponses