コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Increment counter for page views

Avatar

Level 1

Hi All,

I have to create an activity which displays user different offer based on user's visit to the particular page. For instance,

Page View Count 1 to 3 - Offer 1

Page View Count 4-7 - Offer 2 and so on.

Is there any way to achieve this using profile scripting?

1 受け入れられたソリューション

Avatar

正解者
Level 10

Hi Lalit,

Yes, We can definitely achieve this using Target profile scripting. Please find below the sample code for same which increments the page view count in the profile itself :

var nameofvar = user.getLocal("nameOfProfile") || 0; if(mbox.name =='target-global-mbox') { if (page.url.indexOf("pageURLorDomain") != -1) { nameofvar = nameofvar + 1; user.setLocal("nameOfProfile", nameofvar); } } return nameofvar;

Thanks & Regards

Parit Mittal

元の投稿で解決策を見る

2 返信

Avatar

正解者
Level 10

Hi Lalit,

Yes, We can definitely achieve this using Target profile scripting. Please find below the sample code for same which increments the page view count in the profile itself :

var nameofvar = user.getLocal("nameOfProfile") || 0; if(mbox.name =='target-global-mbox') { if (page.url.indexOf("pageURLorDomain") != -1) { nameofvar = nameofvar + 1; user.setLocal("nameOfProfile", nameofvar); } } return nameofvar;

Thanks & Regards

Parit Mittal

Avatar

Level 1

Thank You Parit. This is helpful.

Also, I am trying to create a segment in Adobe Analytics using visit number & use that as market cloud audience. I created an experience using the segment as targeted audience. For example: if visit number is between 1 to 3 , user should see the experience. But I am not able to see personalized content. Could you please advise if there is anything that I am doing wrong? Also, the correct way to achieve this? My problem statement is basically to serve different content to user depending upon number of user visit.