How to remove Jira version and node ID from the footer of Jira pages

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

Due to different reasons, customers would like to remove some Jira data from the footer of the pages. For Jira Data Center, the node ID is also included in the footer.

This article offers a solution to hide such footer info by changing velocity templates.

Environment

Jira 8.x and later

Solution

Natively, Jira does not have the option to hide the footer info.

The content on this page includes steps to customize or extend Atlassian software (adding/changing CSS rules, HTML, JavaScript, etc.). Per the Atlassian Support Offerings, support does not include customizations made to Atlassian products. Be aware that this material is provided for your information only and using it is done so at your risk.

If you have any questions about this or any customization, please ask the community at Atlassian Community or consider working with an Atlassian Solution Partner.

Option #1:

  1. Stop Jira.

  2. Open up your $JIRA_INSTALL/atlassian-jira/WEB-INF/classes/templates/plugins/footer/footer.vm file in a text editor.

  3. Locate the footer-build-information section, you will see the following content:

    1 <span id="footer-build-information">(v${buildVersion}#${buildNumber}${formattedCommitId}$!{formattedNodeId}${formattedPartnerName})</span>
  4. To remove the Jira version and build number, remove the following parameters: ${buildVersion}#${buildNumber}

    1 <span id="footer-build-information">(v${formattedCommitId}$!{formattedNodeId}${formattedPartnerName})</span>
  5. If on Data Center, to remove the Jira node ID from the footer, remove the following parameter: {formattedNodeId}

    1 <span id="footer-build-information">(v${formattedCommitId}$!{formattedPartnerName})</span>
  6. Start Jira.

  7. If on Data Center, repeat the steps on each node.

It might be necessary to re-apply this custom configuration after Jira upgrades.

Option #2:

Add the following code to the announcement banner to hide the footer completely:

1 2 3 4 5 <style type="text/css"> #footer {     display: none; } </style>
Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.