When add announcement using JIRA announcement banner section, it will display all over the JIRA. Is it possible to limit announcement only for given sections (ex: Only for issue navigator, dashboards, particular service desk)
We do have a html container for the Announcement banner. So go ahead and utilize it using javascript. Use a similar code as given below. Here, I am checking the browser URL for dashboards or issue navigator with "secure/Dashboard" and "issues" respectively. If yes, I will display the announcement banner in the browser page.
<p style="display: none;" id="demo">Sample Announcement</p> <script> if ((window.location.href.indexOf("secure/Dashboard") != -1) || (window.location.href.indexOf("issues") != -1)) { document.getElementById("demo").style = "display: block;"; } </script>
OR you can refer to the class name which is as "aui-layout aui-theme-default ka ajax-issue-search-and-view page-type-navigator" for issue navigator screen and disable the display.
No, the whole point of the banner is that it is visible everywhere.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.