This same process worked well for me to remove the "work" button. Follow this for the Assign button.
https://confluence.atlassian.com/display/JIRAKB/How+to+disable+the+Log+Work+option+in+JIRA
let me know if this helped you.
welcome
John
This isn't supported in the Cloud version. Are you aware of another solution for the Cloud ?
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.
Hi Julio,
There's a knowledge base article that explains how to do that: https://confluence.atlassian.com/display/JIRAKB/How+to+remove+the+'Assign'+button+from+issues
-- Pedro
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.
Julio,
i hope Assign option should be hidden only for Bug issue type, is am right? if yes, then @Pedro answer might help by adding issue type condition. but you have to manually update that file when you are migrating JIRA to newer version.
As per my knowledge, use following script to hide "Assign" option
<script type="text/javascript"> AJS.$(function () { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { hideAssignOperation(); }); hideAssignOperation(); function hideAssignOperation(){ var projectName = $.trim($("#project-name-val").text()); var issueType = $.trim($("#type-val").text()); if(projectName == 'Project Name' && issueType == 'Bug') $("#assign-issue").hide(); else $("#assign-issue").show(); } }); </script>
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.