How can I enable "My Notification Preferences" from the Service Portal?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2018 05:27 PM
Hi guys,
Previously I had the "notifications_preferences,do" page framed in an iframe on a Service Portal page. I've recently upgraded to Istanbul, and now when I click the button, the updated notifications system attempts to redirect users to the Native UI. This is useless in the service portal.
I have been unable to find any code in the UI Page definition that indicates that a redirect is happening.
Can you help me restore the functionality of editing notification preferences from the service portal?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2018 07:35 PM
Check if below thread helps
Notification preferences on Service Portal?
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-25-2018 06:55 AM
That would be helpful, but my initial post has an error in it:
I recently upgraded to Jakarta, not Istanbul. The solution proposed there broke in Jakarta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2018 04:45 AM
Try to set system property "glide.notification.preference.ui.enabled" to false. As of Jakarta, Notification Preferences are shown in System Settings and that is the reason I believe why it stoped working for you. If you set the property to false, you won't see Notification Preference in System Settings anymore but still using the older UI Page (url notification_preference.do) and so it should be working as before.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2020 09:16 AM
In the header of your portal, you can add the following highlighted lines, replacing 'esc' with the URL Suffix of your portal:
<ul class="dropdown-menu">
<li class="header-menu-item"><a href="{{data.link}}">${Profile}</a>
</li>
<li class="header-menu-item"><a href="/esc?id=actsub_notif_pref&sysparm_domain_restore=false&sysparm_stack=no">${Notification Settings}</a>
</li>
<li class="header-menu-item"><a href="{{::portal.logoutUrl}}">${Logout}</a>
</li>
</ul>