Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×
Hi Team,
Need help as on of the project in Jira is going to be stopped in a month. we need to display banner or meesage to users who select this Project in create issue screen .
We need to even disable to use this project after few days.
Please help to display banner when user selects this project and even when a jira is assigned to this group
Community moderators have prevented the ability to post new answers.
Gunna,
I'd check out this add on. https://marketplace.atlassian.com/apps/1211928/announcer-for-jira?hosting=server&tab=overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Gunaa,
I did some more research and found a page discussing this. https://community.atlassian.com/t5/Jira-Core-questions/Limit-announcement-banner-to-specific-sections-in-JIRA/qaq-p/166841
I made a modification to the script and was able to get something working similar to what you wanted. This will show up when a user navigates to the project, not when they try and create a ticket for the project.
<p style="display: none;" id="demo">Sample Announcement</p>
<script>
if (window.location.href.indexOf("projects/SP") != -1) {
document.getElementById("demo").style = "display: block;";
}
</script>
Note: "SP" is the key of my project I want the announcement banner to appear on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is really helpful, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This works fine.
Can you suggest how to add multiple (two) projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nag,
I didn't find a way to do that, but I did find another answer which shows how to make an announcement banner that can be closed by users.
<div id="mycrazyuniqueid" style="display:none;" class="aui-message aui-message-info closeable">
Announcement Banner Text
</div>
<script>
if (AJS.Cookie.read("mycrazyuniqueiddismissed") != "true"){
document.getElementById('mycrazyuniqueid').style.display = 'block';
}
document.addEventListener('click', function (e) {
var msgid = e.target.parentElement.id;
var msgtargetclass = e.target.className;
if (msgid == "mycrazyuniqueid" && msgtargetclass == "aui-icon icon-close") {
console.log("Hide mycrazyuniqueid Info");
AJS.Cookie.save("mycrazyuniqueiddismissed", "true");
}
});
</script>
This might be of use to you. Once they read it they can close it and not see it again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello @Kian Stack Mumo Systems ,
the script that u wrote above for the announcement banner to appear on SP project, where do we put the script-
<p style="display: none;" id="demo">Sample Announcement</p>
<script>
if (window.location.href.indexOf("projects/SP") != -1) {
document.getElementById("demo").style = "display: block;";
}
</script>
?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Priyanka khare,
You place this in the announcement banner. Instructions for configuring the announcement banner can be found here. Please be aware that you can only configure the announcement banner on a Jira Server or Jira Data Center environment.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Eswar Reddy For a banner that can be used for users not logged in you can use Scriptrunner Fragments.
Condition:
{code}
import com.atlassian.jira.component.ComponentAccessor
if (!ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser())
{ return true }
{code}
Message to display
{code}
writer.write("<div style='background-color: white; border: 5px solid red; margin: 5px; padding: 2px; font-weight: bold; text-align: center'>"+
"You are not logged in!")
{code}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I solved this by creating a Scriptunner web-panel fragment.
Added the "banner" to "atl-header".
"It would be preferable to have the message as the actual banner, but unfortunately the current project
object is not available to us in that context."
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's a good solution! Thanks for sharing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kian Stack Mumo Systems is there a way to have this specific jira project banner done for in JIRA cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ade Adegoke, not to the best of my knowledge.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kian, thanks for the script for display the banner for SP project. It work well
Could you share how can i put the individual banner for 300+ projects in Jira? Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@HP,
I looked at the Marketplace to see if there were any apps to help. I didn't see anything specific in there. I suppose you could set up if/else conditions in the script I supplied earlier. That would be quite a bit of work though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Kian.
I found this, https://help.k15t.com/backbone-issue-sync/latest/server/configure-a-project-banner-197761575.html#id-.Configureaprojectbannerv5.3-Prerequisites which can help to show banner for the individual project/issue related to the project.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@HP - nice that you've found the article in our docs. I've also rephrased that help article as an article for the Atlassian Community. If you have any feedback what you improved/changed which might help other people, I'd be happy if you comment on the article.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@HP,
Thanks for sharing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.