• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Show XenForo Version in Footer

Vincent

Well-known member
To show your XenForo version in the footer, you need to do 1 template edit and edit 1 phrase.

This is how easy it is :)

Replace the phrase xenforo_copyright with the following:
Code:
<a href="http://xenforo.com" class="concealed">Forum software by XenForo&trade; {version} &copy; 2011 XenForo Ltd.</a>

And in the template called footer, find:
Code:
{xen:phrase xenforo_copyright}

and change it to
Code:
{xen:phrase xenforo_copyright, 'version={$xenOptions.currentVersion}'}

You have to do the same in the Admin Template called footer

There, your footer shows your current XenForo Version :)
 
I think for security reason it's better to hide this information. ;)

I know, that's why I don't use it at some of my sites ;)
But when you're running a modification site, and you want your customers to know what version you are running so they know "Hey, this site is up-to-date, if it works here, it will work at my site" then this is useful :P
 
Top Bottom