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

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

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

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

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

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

<style type="text/css">
#footer {
    display: none;
}
</style>




Last modified on Dec 15, 2021

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.