How to disable Create Issue popup in Jira Server or Data Center
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
Please note that this is not supported by Atlassian. You should also make sure to make backups before applying the below SQL queries against your database.
Solution
Disable via the Plugin Module using SQL
Always back up your data before making any database modifications. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.
Shutdown Jira
Add the following SQL queries into your database to disable the plugin module:
1 2
insert into propertyentry values (99999,'jira.properties',1,'jira.plugin.state-.com.atlassian.jira.jira-quick-edit-plugin:quick-create-issue',5); insert into propertystring values (99999,'false');
Restart JIRA
ℹ️ One side effect identified is that the create issue keyboard shortcut does not work when the pop-up is disabled
⚠️ This method will produce errors in your logs stating at the quick create plugin is not enabled
Disable via Javascript
ℹ️ This method is a work in progress, as it currently only disables the functionality when clicking on Create Issue via the top right of your browser
Go to Administration > System > Announcement Banner
Paste the following in the Announcement
box:
1
2
3
<script type="text/javascript">
AJS.$("#create_link").removeClass("create-issue");
</script>
Was this helpful?