How to remove Create another option in create issue popup?

Ed Sattar May 22, 2013

How to remove Create another checkbox in create issue popup?

5 answers

1 accepted

4 votes
Answer accepted
richie_gee
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 22, 2013

Hi Ed,

You can achieve this by adding the following javascript:

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

About where to place the code, you can follow the documentation below:

https://confluence.atlassian.com/pages/viewpage.action?pageId=317950124

Tested on my instance working [Jira 6] :) Cheers

0 votes
BYA December 23, 2020

Hello, 

It is possible to remove the "create another"  when you want to create a ticket please : 

Capture.PNG

 

Please help. 

Thanks,

BR

Fayçal

0 votes
AlaA
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 22, 2013

Hello Ed,

Can you please explain your question further? What Create another checkbox are you referring to?

0 votes
AlaA
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 22, 2013

Hello Ed,

As far as I know that this is not possible within JIRA. In order to achieve what you require you may want to go and customize JIRA code in order to hide the checkbox.

0 votes
Ed Sattar May 22, 2013

In create issue popup there is a checkbox (Create another) before create button button. I want that checkbox to remove.

Suggest an answer

Log in or Sign up to answer