Google Analytics integration with Adobe Target | Community
Skip to main content
Level 2
January 18, 2017
Solved

Google Analytics integration with Adobe Target

  • January 18, 2017
  • 19 replies
  • 26242 views

Hi, Has anybody had any success in integrating Adobe Target with both GA classic and universal analytics - Most of the posts I've seen are fairly outdated (c.2012)

I'm looking to pass the test variation name into a GA event so we can track transactional impact of tests.

Thanks

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ParitMittal

Hi Mathew,

To achieve the use case discussed above,  You need to create an HTML offer inside Adobe Target and then in that offer you can write the JS code to pass data to GA and then apply the offer to an Experience inside an Activity (Campaign) . Please follow the below steps to achieve the same :

  • Login to Adobe Target
  • Add a new HTML Offer (Offers > Create > HTML Offer)
  • Name the offer say "Testing Offer"  Configure and paste in the JavaScript code (with the <script> tags intact)

  You may customize the below  Google Analytics code as per your need
Here’s the script:

<script type="text/javascript"> alert("Your Campaign name is " + '${campaign.name}' + " :Your Experience name is "+ '${campaign.recipe.name}'+" :Your campaign Id is "+'${campaign.id}' +" :Your Experience ID is "+ '${campaign.recipe.id}' + " :Your Experience Traffic Type is "+'${campaign.recipe.trafficType}'); var sCampaignName='${campaign.name}'; var sExperienceName = '${campaign.recipe.name}'; _gaq.push(['_setCustomVar',1,'Target' + sCampaignName,sExperienceName,1]); _gaq.push(['_trackEvent','Target',sCampaignName,sExperienceName,undefined,true]); </script>
  • Apply the above created Offer to an Experience in an Activity say "Experience B"

  • For Validation & Testing , we have put alert in offer created above & output will be similar to the snapshot shown below :

Thanks & Regards

Parit Mittal

19 replies

ParitMittal
Level 10
January 27, 2017

Hi Gaurav/ Mathew,

I hope that answers provided above resolves your query. If yes, Can you please mark this query as resolved.

Thanks & Regards

Parit Mittal

January 27, 2017

Hi Parit,

Really appreciate your help in answering the questions.

I am still not able to resolve this completely as stated in my previous post. I am running an A/B test using visual editor. My experience B is a redirect URL. I would love to track both experiences A and B separately in GA. The problem is as soon as I enter redirect URL in experience B, the interface locks up and does not allow me to add any custom code or swap offer. Do you have any suggestion?

Regards.

fabiáni62494629
May 4, 2017

I have the same problem...

In addition, is it possible to load a script on a whole activity?

thanks!

Regards

ParitMittal
Level 10
May 5, 2017

Hi Fabian,

The code editor is currently available for A/B, Experience Targeting, Multivariate Test, and Automated Personalization activities. The code editor is disabled for overlay and if a redirect is applied to an Experience.

Also, We can't load an script on a whole Activity it has to be alplied to individual Expereinces

Regards

Parit

September 22, 2017

Hello Parit,

Is there any way to capture multiple campaign names on the same page. This seems to only capture one campaign.

Vacations, Resorts, and All-Inclusive Packages | CheapCaribbean.com and Slack - Auryc Inc.

Thanks

Amod

julienb20151765
Level 2
October 2, 2017

Seems last version add a real game changer feature

that can enhance the problem : response token

Those information are very usefull to feed Google Analytics custom dimension or events

If someone has already written a such extension i'll be glad to use it

Level 4
January 23, 2018

Hi Matthew,

I tried the code you mentioned in below, but I could not see the activity name or any details in Google Analytics

Although when I tried the variable mentioned in script in alert box it popped up.

For configuring following script  I have added  this into custom code of each experience using VEC & accordingly passed

GA account ID in each experience.

Can anybody tell what could be the issue &  where to check the target experience details in google analytics ?

It will be very helpful if some one can provide some documentation.

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-#######-1']);

try {
     if (typeof(s_tnt) == 'undefined') {
          var s_tnt = '';
     }
     
  if (typeof(_gaq) == 'undefined') {
          var _gaq = [];
     }
 
     s_tnt += '${campaign.id}:${campaign.recipe.id}:${campaign.recipe.trafficType},';

     var sCampaignName = '${campaign.name}';
     var sRecipeName = '${campaign.recipe.name}';

     if (sCampaignName.length > 0 && sRecipeName.length > 0) {
        
          _gaq.push(['_setCustomVar',1,'Target:' + sCampaignName,sRecipeName,1]);
          _gaq.push(['_trackEvent','Adobe Target',sCampaignName,sRecipeName,undefined,true]);

     }
}
catch(e){
console.log(e.message);
}
</script>

Thanks,

Ketan Pardeshi

julienb20151765
Level 2
January 25, 2018

You should be able to see it in events

Filter on event category name 'Adobe Target'

You'll see events, then you could create custom segments in order to compare

people who did see 'RecipeName1' vs 'RecipeName2' and so on.

Then you can explore Google Analytics with those segments

Hope it'll solve your problem Ketan

Best Regards ,

Julien BIJOUX - Vidomia

Level 4
January 29, 2018

Hi Julien,

I have checked that section, I don't see anything there when I opened the webpage.

The steps that I have followed are  :

I have added GA account Identifier in _setAccount method of script

Added the below code in custom code section of both the activities of AB Testing.

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-#######-1']);

try {

     if (typeof(s_tnt) == 'undefined') {
          var s_tnt = '';
     }
     
  if (typeof(_gaq) == 'undefined') {
          var _gaq = [];
     }
 
     s_tnt += '${campaign.id}:${campaign.recipe.id}:${campaign.recipe.trafficType},';

     var sCampaignName = '${campaign.name}';
     var sRecipeName = '${campaign.recipe.name}';

     if (sCampaignName.length > 0 && sRecipeName.length > 0) {
        
          _gaq.push(['_setCustomVar',1,'Target:' + sCampaignName,sRecipeName,1]);
          _gaq.push(['_trackEvent','Adobe Target',sCampaignName,sRecipeName,undefined,true]);

     }
}
catch(e){
console.log(e.message);
}
</script>

Have I followed the correct steps ?

Thanks