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

Ryan_Roberts_
Ryan_Roberts_
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
108

Likes Received

Likes Received
228

Posts

Posts
234

Discussions

Discussions
49

Questions

Questions
185

Ideas

Ideas
3

Blog Posts

Blog Posts
0
Top badges earned by Ryan_Roberts_
Customize the badges you want to showcase on your profile
Re: Show experience only once - Adobe Target 15-06-2021
Yes the mbox name can be whatever you choose. The key part is really just the profile parameter name and values because you'll be using those in the Audience definition. You don't really need to reference the mbox name so I tend to use something generic like 'dataCapture' in these cases.

Views

662

Likes

0

Replies

0
Re: Add Entity to Adobe Recommendation JSON - Adobe Target 15-06-2021
Got it. Thanks for clarifying. To change or update how the recommendations look that Target returns, you need to modify your Design. Which it looks like you were attempting from your earlier screen shot. Here's a simple HTML design you could use to get a single result from your criteria and display a thumbnail, name, id and message (updated via feed or otherwise): $entity1.name $entity1.id $entity1.message

Views

504

Likes

0

Replies

0
Re: Show experience only once - Adobe Target 14-06-2021
Hi @jaredho, It depends a little. If you are using Target as your reporting source and your goal metric is set to viewed an mbox > ** display mboxes ** then changing the advanced settings to increment count, release user & bar from reentry would work as @MihneaD suggested. It is super easy to setup too. However, it limits your ability to see conversions that happen later on in the session. It also isn't an option if you're using Analytics for Target (A4T) reporting. One way to handle in these sc...

Views

696

Like

1

Replies

2
Re: Add Entity to Adobe Recommendation JSON - Adobe Target 14-06-2021
Hi @Luca_Lattarini, I'm not following your question. Can you clarify where the "answer" you are seeing is coming from. When you say how can I add entity element to my JSON, which element or attribute are you referring to? Any single-value attribute sent to Target for an entity can be used in a design.Looking forward to your clarification to see if I can help better.

Views

522

Likes

0

Replies

5
Re: Data Feed upload - Adobe Target 14-06-2021
Hi @Luca_Lattarini,The help section has a special page on limits of various parameters and attributes for Target. Entity.ids are limited to 1000 characters. However, in practice it is more convenient to keep the entity.id's to around 50 characters or less because they are easier to view in the UI (not truncated) and easier to work with in the Recommendations data CSV downloads for an activity that you might use for troubleshooting.

Views

284

Likes

0

Replies

0
Re: Can we run A/B test for additional days to achieve sa... - Adobe Target 14-06-2021
Hi @Sundhara,I presume you used the test-duration calculator to determine how long the test should be run, and you are wondering if statistically speaking if letting it run longer is going to compromise the statistical calculations. I think the "days" measure is the less important measure of duration. The more important ones from a stats perspective are total visitors and total conversions per experience. So in short, I'd say yes, run it until you reach the pre-determined per experience visitor ...

Views

335

Likes

0

Replies

0
Re: Cookie message on Adobe Target VEC - Adobe Target 14-06-2021
@garora8 Can you share a screen shot of the page? Or if you prefer DM me the URL and I can take a specific look?

Views

674

Likes

0

Replies

0
Re: Target verified/logged-in users with different experi... - Adobe Target 26-05-2021
Hi @KeithF53,Two+ users on a single device and therefore same Target profile can be a little tricky as your noticing. Profile parameters (the stuff under "visitor profile" when setting up audiences) are sticky to the profile and can't be "cleared" like your wondering about. They can be updated/overwritten though. Alternatively, you could target off of mbox parameters (aka custom parameters). These parameters are unique in that they do not persist. They are only used for that request and then are...

Views

363

Like

1

Replies

0
Re: Can we include escape characters in the AT param value ? - Adobe Target 26-05-2021
Hey @LordOfTheRings,I'm sure you already know the top recommendation: Fix the customer attributes data file so it doesn't have the double quotes surrounding the ids.In help for ECID and Customer IDs the docs do say to NOT use encoded values in your ids (within the "important" section). Which I guess you are still okay on since your just escaping the quotes. If you are not using the visitor.setCustomerIds() method, but the alternative method of directly passing the customer ID to Target as the th...

Views

391

Like

1

Replies

1
Re: SPA triggerView() handling page reload - Adobe Target 24-05-2021
I'd think you could add a rule in Launch to fire the trigger view on page load if some condition exists (e.g., a hash value is in the url). I've done something similar with JS on the page. Here's my sample code if it is helpful: //add triggerview function triggerView(viewName) { // Validate if the Target Libraries are available on your website if (typeof adobe.target.triggerView === 'function') { adobe.target.triggerView(viewName); console.log('AT: View triggered on page load: '+viewName); } else { console.log('AT: triggerView or adobe.target not available but viewName was: '+viewName); } } //fire triggerView when the SPA loads and when the hash changes in the SPA if(window.location.hash.indexOf('mySPAhashValue') >-1){ triggerView(location.hash); } window.onhashchange = function() { if(window.location.pathname.indexOf('/mySPApath/') >-1){ triggerView(location.hash); } }

Views

526

Likes

2

Replies

0