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
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
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Chris,
As regarding the disabling the 'Create another', there is a similar discussion on this topic here:
Hope it helps.
Cheers,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.