Previous visited pages or categories
Is there a library of profile script to achieve the use case in which we want to display the previous visited pages or categories
Is there a library of profile script to achieve the use case in which we want to display the previous visited pages or categories
please refer this - https://experienceleague.adobe.com/docs/target/using/audiences/visitor-profiles/variables-profiles-parameters-methods.html?lang=en#section_8F25958273164EBAA6DC659302993FD3
also, you can code something like this. just sample but you can develop better using above info
if(user.isFirstSession){
//do somethign for first time
}else if(user.isNewSession){
if(user.getLocal("lastsession")!=user.sessionId){
//do something for returned users
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.