Hiding the Warning About License Expiration


Follow

Overview

When the process of your licence renewal takes a bit longer time, you might want to hide the notification warning you about the licence expiry:

Subscription notice - Your FogBugz On-Premises subscription will expire soon. Please update your subscription

 


Solution

The notification can be hidden using FogBugz Customization.

Warning: This will hide the alert permanently, which can cause the system to stop alerting about licensing expirations.

Read first this article: Enabling, Configuring, and Creating New Customizations for FogBugz

Please also note the disclaimer mentioned in the article.

 

Use the following customization to hide the warning about subscription expiration:

name: Hide Subscription Expiration Notification
description: This will hide the warning about the upcoming expiration of your subscription or license.
author: FogBugz Support Team
version: 1.0.0.0

js:
   // No js to add, only CSS

css:
 .on-site-expiration-notice {
 display: none !important;
}

 

Back to the top