Hi All,
Please some one could help me to disable "Configure Fields" option from create issue screen in JIRA 6.1.5
Tukaram,
We have a KB article that should help with this, please see: How to Hide the "Configure Fields" Button on the Create Issue Screen.
Please note though that by doing so you'll simply remove the button, so any user who had already configured the fields will end up only seeing the fields previously configured. Therefore, I've tested this locally, and you should be able to force all users to see "All" fields with the following update in the database:
UPDATE propertynumber SET propertyvalue = 0 WHERE id in (SELECT id FROM propertyentry WHERE entity_name = 'ApplicationUser' AND (property_key = 'jira.quick.create.use' or property_key = 'jira.quick.edit.use'));
For those on JIRA 5 that wish to follow this, the query above won't work, so try using this instead:
UPDATE propertynumber SET propertyvalue = 0 WHERE id in (SELECT id FROM propertyentry WHERE entity_name = 'ExternalEntity' AND (property_key = 'jira.quick.create.use' or property_key = 'jira.quick.edit.use'));
Please remember to create a backup and shutdown JIRA before applying this update, and restart JIRA afterwards.
Let me know if this helps. :)
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.