Hello there,
I would like to remove or re-map the button located on the top level menu within JIRA.
We are using JIRA as a service desk solution, however some of our Agents are creating jobs using this button instead of through the Service Desk Portal.
This doesn't present a major logistical issue, however I would like it to be unified (and either remove that button or link it to the Service Desk Portal).
Any easy way of doing this?
image2015-11-10 10:3:2.png
You might have to do an inspect element on that create button to get the ID in your version.. but this worked on 6.3.15 from the dashboard (might be different on other pages) .. This is a hack of a hack I use to remove the "Create Epic" link in JIRA Agile. Just put this in your Announcement Banner. Yo might want some logic to test that button exists before trying to remove, hide or change it.
<script type="text/javascript"> function RemoveCreateLink () { var button = document.getElementById('create_link'); button.parentNode.removeChild(button); } jQuery(document).ready(function() { setTimeout(function() { RemoveCreateLink(); }, 2000); }); </script>
Note these next to I didn't test but it is basic javascript and easily google'able.
You if you just want to hide it..change button.parentNode.removeChild(button); to
button.style.display = none;
To change the URL
button.href="newURL"
i have the same problem can anybody help in the process
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would love to have the option as well. It currently allows users to bypass the portal - and that is bad because we have built so many automations from the portal.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Remove their right to "create issue" in the projects you want them to use via the portal.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can you remove their right to "create issue" in the projects?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem. I am using JIRA Service Desk Cloud. Does not seems to work for me. Any tips?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have exactly the same problem, people from service desk always insist to create issues using the create button instead of the RAISE REQUEST link (messing all issue types and creator emails)
This is a really annoying "feature" in JIRA service desk addon
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.