Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Can I have more than one s.ActivityMap.regionIDAttribute

Avatar

Level 2

I recently changed my s.ActivityMap.regionIDAttribute to "region_id" but I still wanted activity map to default to "id" if "region_id" was not set. I thought this was the default behavior but I'm noticing activityMap returning a regionID of "BODY" when "region_id" is not defined. Can I pass an array or a delimited string to s.ActivityMap.regionIDAttribute to have it try "region_id" and then fall back to "id" or will it only ever take one identifier?

-- Nick

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Nick,

Setting conditions to fall back to "id" when "region_id" should not be a problem. You will need to modify "AppMeasurement ActivityMap Module" file.

Below example returns "BODY" when parentNode is not available, here you can make an update to return "id" in while coding block.

s.ActivityMap.region = function(ele){

var className,

classNames = {

'header': 1,

'navbar': 1,

'left-content': 1,

'main-content': 1,

'footer': 1,

};

  while( (ele && (ele = ele.parentNode))){

if( (className=ele.className) && classNames[className]){

return className;

}

}

return "BODY";

}

Useful links:

https://marketing.adobe.com/resources/help/en_US/analytics/activitymap/activitymap-link-tracking-met...Differentiating Multiple links that Reference the same Link ID and Region  

https://marketing.adobe.com/resources/help/en_US/analytics/activitymap/activitymap-link-tracking-met...

Thanks!

Asheesh

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Nick,

Setting conditions to fall back to "id" when "region_id" should not be a problem. You will need to modify "AppMeasurement ActivityMap Module" file.

Below example returns "BODY" when parentNode is not available, here you can make an update to return "id" in while coding block.

s.ActivityMap.region = function(ele){

var className,

classNames = {

'header': 1,

'navbar': 1,

'left-content': 1,

'main-content': 1,

'footer': 1,

};

  while( (ele && (ele = ele.parentNode))){

if( (className=ele.className) && classNames[className]){

return className;

}

}

return "BODY";

}

Useful links:

https://marketing.adobe.com/resources/help/en_US/analytics/activitymap/activitymap-link-tracking-met...Differentiating Multiple links that Reference the same Link ID and Region  

https://marketing.adobe.com/resources/help/en_US/analytics/activitymap/activitymap-link-tracking-met...

Thanks!

Asheesh

Avatar

Level 2

So what I finally ended up doing was below. It takes either the defined activitymap.regionIDAtttribute or uses "region_id". If it can't find either of those and hit 'id' first it uses that. All else fails it returns 'body'

   e.region = function (a) {

   for (var d, b = e.regionIDAttribute || "region_id"; a && (a = a.parentNode);) {

   if (d = q(a, b, b, b)) return d;

   if (d = q(a, 'id', 'id','id')) return d;

   if ("BODY" == a.nodeName) return "BODY"

  }

  }