Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Platform Announcements enable services to have a pop-up message visible to the end-user.

In the Admin Panel, you can configure the title and content of an announcement that gets shown to the customers on a 24-hour basis from now until you decide to take it down again. 

Configure a platform announcement:

Go to Site Admin → Organization → Announcement → Add another announcement

  1. Include a title

  2. Include the announcement text

  3. Select Show

  4. Save

If you want to remove the announcement at a later stage, you need to deselect the “show” option

Block platform usage entirely (“Maintenance Mode“)

Sometimes is might be needed to block all platform usage entirely, so that the users can not use the platform.

While this is not supported with the Platform Announcements feature, there is a workaround available to prevent users from using the platform when they see the Platform Announcement.

To enable a maintenance mode

  1. Configure a platform Announcement like described above

  2. Add this snippet to the OrganizationCustom Script:

<style>
/* Maintenance Mode Script */
  .kt-button {
    display:none;
  }
  body{
    pointer-events: none;
  }
</style>

To disable a maintenance mode

  1. Remove the snipped again from the Custom Script.

  2. Disable the platform announcement

  • No labels