Hope this helps!
Regards,
Harsh Kabra | Adobe Certified Expert: Digital Analytics® & SiteCatalyst Implementation & Reporting®
When user changes password on my site he/she comes back to the Account Overview page. The only difference is the added snippet of the code which looks like:
<div id="CommonProfileManagementSaveNotification" class="broadbandprofilemanagementpasswordsavednotification"> <h2 class="headline">Your new password has been saved</h2>
Great.
I need to change page name to call it "Password Changed" instead of "Account Overview" in this case.
So, I've created a data element based on div#CommonProfileManagementSaveNotification and in the drop down menu chose "class". "Class" is handy as the same div id is used when user changes their security and personal info. In these cases class value is different.
Next, I create page load rule where I call this element I called 'password change" when it is equal "broadbandprofilemanagementpasswordsavednotification".
It doesn't work.
What is wrong?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
I solved it with this custom code:
if(document.getElementByClassNam('broadbandprofilemanagementpasswordsavednotification')){ return true; } else{ return false; }
It fires on page load and works fine.
Views
Replies
Total Likes
**All the views given here are my personal and has no relation or doesn't reflect views of my employer or Any 3rd party.
Hi Alla,
You just might want to read the inner html value and fire the rule.
Additionally, you always have an option to create a Direct Call Rule and fire the same on this particular scenario and capture all that you wish to along with the page name.
Do like the post should you find useful by clicking on the "Heart Icon" and move this to "Solved" status for the benefit of other users of the forum.
Views
Replies
Total Likes
Hi
I solved it with this custom code:
if(document.getElementByClassNam('broadbandprofilemanagementpasswordsavednotification')){ return true; } else{ return false; }
It fires on page load and works fine.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies