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

ryanr7
ryanr7
Offline

Badges

Badges
10

Accepted Solutions

Accepted Solutions
6

Likes Received

Likes Received
8

Posts

Posts
13

Discussions

Discussions
0

Questions

Questions
13

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by ryanr7
Customize the badges you want to showcase on your profile
Re: How to resolve "Adobe Target content delivery is disa... - Adobe Target 10-06-2021
Hi @ganeshbyalebrillio,My guess is your using one of the known public suffix list domains from AWS, so browser won't allow the at.js to set the cookie at the domain.com level. You need to set your Target cookies at the sub-domain level in this case. Here's a bit on that in this help doc.Essentially, you need to set the domain at.js uses for storing cookies. You can do that with the targetGlobalSettings() function. Here's a sample of how to set the cookie domain to a subdomain:window.targetGlobal...

Views

1.3K

Likes

0

Replies

0
Re: How to match customer id from mbox with customer id u... - Adobe Target 10-06-2021
Yeah, custom code option will work and your code looks good to me for passing entity data along with the mbox 3rd party id. A formatted sample:function targetPageParams() { return { "entity": { "id": xxx, "categoryId": xxx }, "mbox3rdPartyId": digitalData.user.id } };

Views

464

Likes

0

Replies

0
Re: How to match customer id from mbox with customer id u... - Adobe Target 09-06-2021
Sorry it was clearer, that's just meant to be an example customer id value that is getting passed. You replace 2000578 with your customer id for the visitor.

Views

487

Likes

0

Replies

0
Re: Cookie message on Adobe Target VEC - Adobe Target 09-06-2021
Hi @garora8,Assuming you're referring to a cookie message your site displays to all new visitors? Are you using "enhanced composing mode". You can check by clicking the gear icon in the VEC, then page delivery. If the enhanced composer is checked try unchecking it.Alternatively, if you click the "browse" mode button in the upper right corner of the VEC it will allow you to interact with the page. You should be able to close the cookie message and then click the "compose" button and continue sett...

Views

718

Likes

0

Replies

5
Re: How to interpret weights in criteria attribute weight... - Adobe Target 09-06-2021
No, 25% isn't a negative weight. My point was you could create multiple weighting rules to overlapping definitions of products/entities and possibly get the mix you are hoping for over a single rule boosted really high. For example, suppose I know that a particular brand and category overlap a lot. I could create 2 separate rules one on the brand value and another on the category value to potentially add fine tuning to your weighting. It is something you'll have to test out but could give you th...

Views

460

Likes

0

Replies

0
Re: How to match customer id from mbox with customer id u... - Adobe Target 09-06-2021
Hi @Luca_Lattarini,If you have a data source setup for Customer Attributes you can ensure that customer IDs are properly synced to Target in one of 2 ways.Using the customer ID sync with the Experience Cloud ID service (aka ECID). With a proper ECID and Target implementation this will ensure Target is linked to the proper customer ID used in Customer Attributes. Find details in this help doc for ECID and also setting customer ID with ECID.Send the customer ID used in the Customer Attributes uplo...

Views

512

Likes

0

Replies

4
Re: How to build criteria with the most viewed product - Adobe Target 09-06-2021
Target detects view behavior when your request to Target includes the entity.id parameter on product pages. Then you pick "mboxes" as your data source for the criteria. Here's a link to a help doc on a basic Recommendations implementation for a product page. It passes the entity.id and a couple other related attributes.

Views

3.5K

Like

1

Replies

0
Re: How to interpret weights in criteria attribute weight... - Adobe Target 09-06-2021
Hi @abid63370229,The attribute weightings only allow the 25% increment options. In stead of boosting up that single attribute to 75% you could keep it to 50% and then boost another attribute (that addresses a similar set of products/entities) up (maybe 25%) to nudge the results a little more. That way you might be able to achieve the mix you are looking for.To your later question, boosting 25% doesn't mean it will achieve 25% of recommendations. It's just an increase or decrease of weighting on ...

Views

474

Like

1

Replies

2
Re: multiple goals in target lead to multiple conversions... - Adobe Target 09-06-2021
Hi @antonym1,When you say setup as goals, are you referring to separate conversion metrics? So, in the report view you have multiple metrics in the report metrics drop-down? If so, then yes, a single visitor could trigger multiple conversions for different conversion metrics. If I enter a test and reach action one (tied to conversion metric A) and then later reach action 2 (tied to conversion metric B) I would count as one visitor and one conversion for metric A and one conversion for metric B.I...

Views

250

Likes

0

Replies

0
Re: Expressions Replaced by Adobe Target Server - Adobe Target 05-01-2021
Hi @kaio61751785,This is a good question! That syntax is used by Target for dynamic data in offers which is why it's getting removed/replaced. I couldn't find any info on how to "escape" the format for a literal print. However, I was able to hack a solution that worked for me you might try.Create a profile script that returns the string you want returned like: return "${myText}";​ Use the dynamic data sytax in your HTML offer to replace content with the value of your new profile script (I named ...

Views

733

Like

1

Replies

1