Modifying the JIRA Footer

Usage FAQ

On this page

Still need help?

The Atlassian Community is here for you.

Ask the community

Atlassian does not support customisations to Velocity templates or other JIRA files. For more information about Atlassian support, see Atlassian Support Offerings.

Deploying Velocity Templates without a Restart

In a development instance, you can play with picking up velocity file changes without a restart.
From <jira-install>/atlassian-jira/WEB-INF/classes/velocity.properties:

  1. Change class.resource.loader.cache from true to false
  2. Uncomment (remove the # sign from) #velocimacro.library.autoreload=true

Keep in mind that the next time you upgrade JIRA – or need a new installation for any reason – you will have to manually copy any changes you have made to the JSPs or tempates into the new installation of JIRA. If the JSPs or templates have changed in the newer version, you will have to port your customization into them.

'Powered by Atlassian'

Also see clause 7 of the Atlassian End User License Agreement. This states that you must not remove the "Powered by Atlassian" link at the end of this file.

How to Modify the Footer

The footer can be modified by editing <install directory>/atlassian-jira/WEB-INF/classes/templates/plugins/footer/footer.vm.


...
<span #if($smallFooter) class="smallfooter" #else class="poweredbymessage" #end>
&nbsp;&nbsp;&nbsp; #if ($longFooterMessage)Powered by #end<a href="$externalLinkUtil.getProperty('external.link.jira.product.site')" class="smalltext">Atlassian JIRA</a>
&nbsp;&nbsp;&nbsp; the Professional <a href="$externalLinkUtil.getProperty('external.link.jira.product.site')">Issue Tracker</a>.
&nbsp;&nbsp;&nbsp; <span #if($smallFooter)class="smallgreyfooter" #else style="color: #666666;" #end>($buildInformation)</span>#if($smallFooter)<br/>#end
&nbsp;&nbsp;&nbsp; - <a href="$externalLinkUtil.getProperty('external.link.jira.raise.issue')">Bug/feature request</a>
&nbsp;&nbsp;&nbsp; - <a href="$externalLinkUtil.getProperty('external.link.atlassian.news')">Atlassian news</a>
&nbsp;&nbsp;&nbsp; - <a href="${req.contextPath}/secure/Administrators.jspa">Contact Administrators</a>
</span>

\#if($smallFooter)
&nbsp;&nbsp;&nbsp; </span>
\#end

</div>

Keep in mind the considerations about Modifying Jira Templates and JSPs. Restart JIRA after your customization in order for it to take effect.

RELATED PAGES
Last modified on Jul 8, 2010

Was this helpful?

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