You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
is it possible to remove items like "Releases" or "Components" from the project sidebar of software projects?
Background: there are business people out there which love Boards, but not the technical stuff that comes with software projects per default.
Kind regards
Christian
You can try to use web fragments functionality of ScriptRunner for it. Go to Web fragments and choose "Hide system or plugin UI element". Then type Component in the Hide What text field. You will see serveral items. Choose the one you need. Do the same for Releases.
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.
It worked with
Condition:
!(jiraHelper.project?.key in ["SOMEPROJ"])
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alexey Matveev @Christian Pascher
Is there any possible way to remove Releases from side bar, without using Script runner??
Please let me know.
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do it via CSS in the announcement banner. Go to Administration -> System -> Announcement Banner. Put in the below CSS and replace the {ProjectKey} portion with the key of the project you would like to remove them from.
<style type="text/css"> /********************************/ /* Hide components and releases */ /********************************/ a[href*="/projects/{ProjectKey}"][data-link-id="com.atlassian.jira.jira-projects-plugin:components-page"],
a[href*="/projects/{ProjectKey}"][data-link-id="com.atlassian.jira.jira-projects-plugin:release-page"] {display: none !important;} </style>
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.
Is this only applicable for Jira on-premise version?
Is there a way to archive the same for the Cloud version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Slightly improved the previous answer and removed empty <li> elements.
<style type="text/css"> /********************************/ /* Hide components and releases */ /********************************/ li:has(a[href*="/projects/{ProjectKey}"][data-link-id="com.atlassian.jira.jira-projects-plugin:components-page"]),
li:has(a[href*="/projects/{ProjectKey}"][data-link-id="com.atlassian.jira.jira-projects-plugin:release-page"])
{
display: none !important;
} </style>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Current Cloud version(Sep 2021) has a new "Features" option in the left navigation menu under "Project settings". Components is considered as "Core" function, so they don't allow you to turn it OFF whereas you can toggle "Releases" or "Code" to OFF
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hopefully they add this to all project types and enable to remove certain add-ons/apps as well. We currently have so many sidebar options in every project its just ridiculous and overwhelming.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.