Looking for a way to make disapear both "Configure fields" and "Create another" presents on the creation's screen

Christophe Leite September 29, 2013

Hello all,

Is there a way to make disapear the option "Configure fields" we have on the top right hand corner of a create view ?

Same thing for the checkbox "Create another" present on the bottom right hand corner of the same screen ?

Thanks a lot,

Best regards,

Christophe

3 answers

1 vote
Mizan
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.
October 10, 2013

You can write a javascript and paste it in the announcement banner which will remove the option for configure fields and create another checkbox from the issue creation page .

refer this question for js reference https://answers.atlassian.com/questions/41544/how-can-i-disable-configure-fields-button-on-first-screen-of-creating-issue-to-all-users

there is also an improvement request here which you can vote https://jira.atlassian.com/browse/JRA-27707

0 votes
RambanamP
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.
October 10, 2013

use this script to hide configure fields section

<script type="text/javascript">
(function($) {
    AJS.toInit(function(){
        // init on load
        AJS.$("#qf-field-picker-trigger").hide();
    })
    JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) {
        // init on refresh
        AJS.$("#qf-field-picker-trigger").hide();
    });
})(AJS.$);
</script>

check this doc

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

use this script to hide create another issue option

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

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.
October 10, 2013

Hi Chris,

As regarding the disabling the 'Create another', there is a similar discussion on this topic here:

https://answers.atlassian.com/questions/172736/how-to-remove-create-another-option-in-create-issue-popup

Hope it helps.

Cheers,

Suggest an answer

Log in or Sign up to answer