Profile Scripts - How to create audiences based on new and returning visitors | Community
Skip to main content
Level 2
June 2, 2020
Solved

Profile Scripts - How to create audiences based on new and returning visitors

  • June 2, 2020
  • 1 reply
  • 4463 views

Good Afternoon,

Hope everyone is safe and healthy.  

Our team is looking to set up a test on our homepage banner property. To do this we believe we will need to create a profile script in Target. The audiences would be as follows:

 

  • 1st visit: Support Message (COVID messaging)
  • 2nd visit: D2D Message
  • 3rd visit: Support Message (COVID messaging)
  • 4th visit: D2D Message

Just looking for some examples of profile scripts that would support the above sequuence.

Thank you very much in advance,

Alex

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ambikaTewari_ATCI

Hi @alex19771  you can create a profile script as below :

 

Name : Impression

Code :

var freq = user.get("Impression") || 0;
freq+=1;
if (freq < 100)
{
return freq;
}

Now you can create an audience as Visitor Profile ---> user.Impression ---> contains static value ---> 1,3 ---> for Covid Message
Visitor Profile ---> user.Impression ---> contains static value ---> 2,4 ---> for D2D Message

Hope that helps you.

1 reply

ambikaTewari_ATCI
Community Advisor
ambikaTewari_ATCICommunity AdvisorAccepted solution
Community Advisor
June 3, 2020

Hi @alex19771  you can create a profile script as below :

 

Name : Impression

Code :

var freq = user.get("Impression") || 0;
freq+=1;
if (freq < 100)
{
return freq;
}

Now you can create an audience as Visitor Profile ---> user.Impression ---> contains static value ---> 1,3 ---> for Covid Message
Visitor Profile ---> user.Impression ---> contains static value ---> 2,4 ---> for D2D Message

Hope that helps you.

Alex19771Author
Level 2
June 3, 2020

@ambikatewari_atci

Thank you very much.  Will try this out.  Much appreciated.

 

Cheers,

Alex