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
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"
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.
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.