Is it possible to deactivate this button and not show it?
Create --> create another
Hello Ignacio,
Are you using JIRA Cloud or Server?
If you are using JIRA Server, it is possible to use Javascript code to hide the mentioned option. The code would be something like this:
<script type="text/javascript"> (function($) { AJS.toInit(function(){ // init on load AJS.$("#qf-create-another").hide(); AJS.$("label.qf-create-another").hide(); }) JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) { // init on refresh AJS.$("#qf-create-another").hide(); AJS.$("label.qf-create-another").hide(); }); })(AJS.$); </script>
If you would like to know how you can add it, you can check the Web Resource Plugin Module documentation.
Now, if you are using JIRA Cloud, I'm afraid this option is not available because Javascript is a restricted function on Cloud since this feature creates an XSS vulnerability that could allow malicious users to gain system administrator permissions and use the Cloud infrastructure for nefarious purposes.
Let us know if you still have any questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.