Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

perrin_ennen
perrin_ennen
Online

Badges

Badges
20

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
42

Posts

Posts
46

Discussions

Discussions
2

Questions

Questions
44

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by perrin_ennen
Customize the badges you want to showcase on your profile
Re: Reset to Original Experience - Adobe Target 16-02-2022
Hi @Zach,If you are working in the VEC - there is an undo button. Or you just don't save when you changed something, then it's back to the way it was before. Unfortunately there is no proper versioning system in Target itself. However, it is possible to run a cronjob via the API, which archives activities accordingly and which can be restored, e.g. if an activity is deleted by mistake etc., but this does not come out of the box. You have to write it yourself.

Views

152

Like

1

Replies

0
Re: CRITICAL ISSUE - Adobe Target is loaded twice when added the Custom code container - Adobe Target 16-02-2022
Hi @Ewoud_p, How exactly do you put your custom code on the page? Via a target activity using the VEC and an HTML element? Or via something else? I can only think of two experiences at the moment - but they don't have to have anything to do with your problem. If you use remote offers that bring code to the page via a JCR path - depending on the setup this may require that you first have to check what exactly arrives in the remote offer in the request. Once had the case that depending on the Remo...

Views

161

Like

1

Replies

0
Re: experience based off which URL the visitor is coming from - Adobe Target 16-02-2022
Hi @Krzystof, You can theoretically set as Audience "Traffic Source" > Referring Landing Page: URL. However, I have to say that I had already tried this twice - and had rather bad experiences with it.

Views

143

Likes

2

Replies

0
Re: Preview link for recommendations blocks all other recommendations and doesn't show anything - Adobe Target 04-02-2022
Hi @mysticDeveloper,I would recommend to test either to delete the mbox cookie or in this in the Incognito window (if this is possible with a PDP). Under Activity QA I would recommend to set "Match audience rules to see experiences" to false and "Show default content for all other activities" to true. In addition, the criteria of the recommendation must also be met so that a content from the collection can be displayed at all.

Views

187

Likes

0

Replies

1
Re: A/B Test in A/B Test, possible? - Adobe Target 04-02-2022
Hi,Basically, you can create a test with several variants and set the weighting accordingly. For example, A 50% B25% C25%.However, if you do not want to have this in one test for various reasons - you may want to split this into several tests. Is it basically possible to divide users into certain groups via Profilescript.Here is an example for the division of users from 10% and 90%. if (mbox.name == 'target-global-mbox') { if (!user.get('Group_10_90')) { var rnd = Math.floor(Math.random() * 100)...

Views

162

Like

1

Replies

0
Re: Profile Activity history - Adobe Target 18-11-2021
Hi @wesleybrett1,There is the profile attribute profile.activeActivities - there you can see in which activities (by ID) the user is.

Views

183

Like

1

Replies

1
Re: Referencing profile script value in VEC custom code - Adobe Target 17-11-2021
Hello @nicholase927171 ,yes you can simply define e.g. a variable and then work with it in the code. var a = '${user.activeActivities}'; var b = (a.length < 10) ? 'small' : 'big'; // just an example console.log(b); Hope this helps you.

Views

158

Like

1

Replies

1
Re: How To Trigger an A/B Test in Adobe Target with a User Clicking an On-Page Element - Adobe Target 17-11-2021
Hello @innovati,you can write an activity that executes the following code accordingly when you click on the element. So e.g. wait via JavaScript until the element exists and then put a click event on it. adobe.target.getOffer({ "mbox": "customMbox123", "success": function (offer) { adobe.target.applyOffer({ "mbox": "customMbox123", "offer": offer }); }, "error": function (status, error) { console.log('Error', status, error); } });In the actual Activity corresponding to the mbox customMbox123 e....

Views

263

Likes

0

Replies

0
Re: Is there a way to put someone into a test if they have an exit intent? - Adobe Target 14-10-2021
What you can do is to load content from another activity - I think this may help you more if you want to separate this into another activity: activity 1:Location 1: target-global-mbox// code wait for event or something.. ...// inject content from other activity adobe.target.getOffer({ mbox: 'modal123',"success": function(offer) { adobe.target.applyOffer( { "mbox": "mbox", "offer": offer } ); }, "error": function(status, error) { console.log('Error', status, error); } })... activity 2:Location 1: modal123 // code for modal or something console.log("modal123 injected")

Views

233

Likes

2

Replies

0
Re: Adobe Target content delivery is disabled - Adobe Target 14-10-2021
good to know - I did not know that yet

Views

428

Like

1

Replies

1