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.
Thanks for this - will it hide based on project or user please?
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.
Great answer, thanks!
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.