I would like to hide "Configure Fields" Button on right top corner of edit/create issue panel
Is it able to hide by "Hide UI Element" provided by script runner?
https://scriptrunner.adaptavist.com/latest/jira/fragments/HideUIElement.html
Hello,
I hope you are having a nice day.
Can you confirm if you are using JIRA Server or Cloud?
If you are using JIRA Server, you can add some Javascript coding in your UI background. These would be the steps:
Paste the codes provided below to the Description field and Update the field.
<script type="text/javascript">
(function($) {
AJS.toInit(function(){
// init on load
AJS.$("#qf-field-picker-trigger").hide();
})
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) {
// init on refresh
AJS.$("#qf-field-picker-trigger").hide();
});
})(AJS.$);
</script>
Unfortunately, Javascript is a restricted function on JIRA Cloud, so it is not possible to customize the formatting or configuration of the Cloud UI.
For more information about the steps provided above, you can check the documentation below:
- How to Hide the Configure Fields Button on the Create Issue Screen
Let me know if this information helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.