Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Button "create another"

Ignacio Aredez
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 14, 2019

Is it possible to deactivate this button and not show it?

 

Create --> create another

1 answer

1 accepted

0 votes
Answer accepted
Petter Gonçalves
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 15, 2019

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events