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: AB Test Custom Code Not Showing in Preview or Live - Adobe Target 06-03-2017
Hi Alex,It looks like you are trying to load Target on that page with Adobe's DTM; however, your script reference to DTM is returning a 404 error. Consequently, Target is not loading on this page. Which explains your issue of never getting into a test via preview links or otherwise. Please check your DTM tag on the page. You can find it by looking for the script pointing to "//assets.adobedtm.com/...". If you can update that so it correctly points to your DTM instance, and verify Target is imple...

Views

1.5K

Likes

0

Replies

0
Re: AB Test Custom Code Not Showing in Preview or Live - Adobe Target 02-03-2017
Okay, if you aren't seeing the mbox request fired from the page (a call to *.tt.omtrdc.net/) then it is likely an implementation issue. If you add "?mboxDebug=1" to the end of your URL and reload the page you should get a pop up (if using mbox.js) or console logs (if using at.js) are you getting any error message there?If you are able to share the URL I'm happy to take a look at it to provide any additional suggestions.

Views

1.5K

Likes

0

Replies

0
Re: AB Test Custom Code Not Showing in Preview or Live - Adobe Target 01-03-2017
Hi Alex,Hard to say exactly what might be going on, I've seen varying cases. Here's what I'd check:Can you see the expected code returned in the mbox request call? View it in the network tab of the dev tool for your browser. Chrome provides a "preview" mode for looking at response bodies. This is nice for JSON responses. Do you see the custom code you added in the test coming back to the page?If the code isn't coming back, then it's possibly a preview link issue. Are your preview links for the c...

Views

1.5K

Likes

0

Replies

0
Re: Success Metric if Cookie Value Changed - Adobe Target 27-02-2017
If the confirmation page uses the same domain as your test entry the mbox cookie is available on the confirmation page. If you can add a script to the page that pulls the session ID and PC ID out of the mbox cookie you can manually fire a confirmation mbox request from the page without the library file. Here is a sample JS tag that will do this:if (document.cookie.indexOf('mbox=') != -1) { var mbxSes = document.cookie.match(/session#[0-9]+?-[0-9]+?#/).toString().split('#'); var mbxPC = document....

Views

1.3K

Like

1

Replies

0
Re: AT.js - How can I get parameter value on mbox - Adobe Target 27-02-2017
Hi nfujik,If I'm understanding you correctly you are passing a parameter into the Target global mbox request somewhere (page A). And then somewhere else (page B) you'd like to read the value of the parameter for the visitor. If this is correct the method you referring to for mbox.js does NOT handle that. It only returns the parameters sent on the same page.

Views

1.4K

Likes

0

Replies

0
Re: Success Metric if Cookie Value Changed - Adobe Target 27-02-2017
Hi Sam,Short answer: You can do what you are suggesting. It requires custom JS on the confirmation page to set the cookie, and then separate JS on the home page to evaulate it and send a custom mbox parameter to Target on that page. However, it has some issues and gaps (namely only people returning to the home page after confirmation will actually get tracked as a confirmation), but maybe it is the best you can get without an mbox request firing on the confirmation page.Follow up question: What ...

Views

1.3K

Likes

0

Replies

0
Re: Integrating Target with Audience Manger - Need plug-in code and the API call - Adobe Target 19-10-2016
You need to request the provisioning from Adobe. I'd ask your consultant or Clientcare to help you make this provision request. You need to request the "Profiles and Audiences" integration be setup for your Marketing Cloud org.

Views

1.0K

Likes

0

Replies

0
Re: Integrating Target with Audience Manger - Need plug-in code and the API call - Adobe Target 19-10-2016
Hi Surya,It seems you are referring to the legacy integration of AAM and Target. There is now a much more robust and efficient option that connect Target and AAM with a server-side integration. You do need to implement the Marketing Cloud ID Service on your site to have this enabled though. Here's the documentation on setting up the MC ID Service. https://marketing.adobe.com/resources/help/en_US/mcvid/If you really want to use the older client side integration I could dig around and try to find ...

Views

1.0K

Likes

0

Replies

0
Re: Maintaining referring URL parameters when using Adobe Target Classic Redirect Offer. - Adobe Target 01-07-2016
Hi RikAs Mihnea is showing if you use an HTML offer and add a script to handle the re-direct you can preserve your non-URL-encoded colons. Here is a sample offer that will simply change the subdomain from 'www' to 'www2' in the url for the redirect. Hence, everything in the path and query portion will be maintained as is. var oldURL = document.location+""; var newURL = oldURL.replace("www","www2") window.location.replace(newURL);

Views

1.5K

Likes

0

Replies

0
Re: Troubles using mbox3rdPartyId feature in Target Classic - Adobe Target 21-06-2016
Hi Paul,A couple of follow up questions.When moving from #4 to #5 are these tests using different mboxes?Are there any other tests running on the mbox used in #5?You mentioned that you used "user.testFrequency" as the condition in #5. "User." variables are typically set by profile scripts in the Target interface rather than offline uploads like you describe in #2. Offline variables should be prefixed as "profile.". They'll show up in the profile view API without the "profile." prefix and you sho...

Views

1.4K

Likes

0

Replies

0