Expand my Community achievements bar.

Take 10 minutes to complete an Adobe Target review on Gartner Peer Insights, and as a thank you for your time, you’ll have the option to receive a $25 gift card!
SOLVED

Audience set up - UI element that goes away without DMP

Avatar

Level 2

Hi, I'm trying to set up an audience rule to display an UI element until users interact with it, then hide it. Is there a way to do that in absence of a DMP?

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi @a_hulshof ,

Trigger below code on click of UI element. Profile variables will be stored in the profile. So, you can use the profile variable, to hide the content across the sessions.

 

https://docs.adobe.com/content/help/en/target/using/implement-target/client-side/functions-overview/...

 

adobe.target.trackEvent({ 
    "mbox": "clicked-cta", 
    "params": { 
        "profile.param1": "true" 
    } 
});

 Create an Audience to show content when "profile.param1" value is not set.

View solution in original post

2 Replies

Avatar

Employee Advisor

Hi @a_hulshof 

Maybe you can fire an extra mbox on click of element. Pass parameter in that mbox as xyz=clicked.

Then create audience as mbox parameters xyz is equal to clicked.

Hope this works.

 

Thanks,

Gauresh

 

Avatar

Correct answer by
Level 2

Hi @a_hulshof ,

Trigger below code on click of UI element. Profile variables will be stored in the profile. So, you can use the profile variable, to hide the content across the sessions.

 

https://docs.adobe.com/content/help/en/target/using/implement-target/client-side/functions-overview/...

 

adobe.target.trackEvent({ 
    "mbox": "clicked-cta", 
    "params": { 
        "profile.param1": "true" 
    } 
});

 Create an Audience to show content when "profile.param1" value is not set.