PDA

View Full Version : How to edit footer copyright so the YEAR changes automatically


Seven Skins
12-12-2011, 11:00 PM
In this tutorial I will tell you to edit the footer of your vBulletin forum so that YEAR in the footer changes automatically so that you can to New Year Party on December 31 instead of editing your footer copyright notice.

It is only four step process, see the screenshots below.

Login to AdminCP and go to (Step 1 and 2) Settings > Options > Site name / URL / Contact Details and scroll down to the bottom of the page and you will see "Copyright Text" field. Edit the code below for your site and copy and paste (Step 3) it in the "Copyright Text" field. Click Save (Step 4).



PS. Do not forget to edit the text in the red color in the code below.




Copyright &copy; <a href="http://www.sevenskins.com/">Seven Skins</a> 2008 - <script type="text/javascript">d = new Date();y = d.getFullYear();document.write(y);</script>





.

Merjawy
12-15-2011, 05:12 AM
Great!!! saves me some time editing the copyright notice each time and every new year

Thanks

benstillman
12-21-2011, 03:22 PM
Hot damn. Why did I not do this sooner???

voglermc
12-22-2011, 04:49 PM
Why not just use this for the year?
<?php echo date('Y');?>

Copyright &copy; <a href="http://www.sevenskins.com/">Seven Skins</a> 2008 - <?php echo date('Y');?>

Seven Skins
12-23-2011, 10:29 AM
^ PHP doesnot work in the copyright text field.

Robru
12-29-2011, 02:33 AM
Thanks for sharing this ;)

Boofo
12-29-2011, 06:42 AM
^ PHP doesnot work in the copyright text field.

I found that out the hard way.

Thanks for the tip. I was wondering how to do that without using PHP code in a hook.

Richard E
12-30-2011, 04:14 AM
Great tip...it work perfectly the first time....unlike when I hack together something myself.

Thanks and happy New Year!

Richard

thompson
12-31-2011, 12:27 PM
thanks for sharing.

rafiul
01-06-2012, 05:37 PM
Thanks its working.

Valcav
01-18-2012, 10:02 PM
great,

quick question...

When I look to the source code it shows:
2009-<script type="text/javascript">d = new Date();y = d.getFullYear();document.write(y);</script>2012
(or when using a little other script, but doing the same thing: )
2009-<script type="text/javascript">document.write((new Date()).getFullYear());</script>2012

is there a way to only show: 2009-2012
in the source-code?

Friendly greetings,
Valcav

Seven Skins
01-20-2012, 11:15 AM
In the source-code javascript will be displayed.

ClErK1991
01-22-2012, 09:07 PM
nice, thanks

Eslob
01-29-2012, 10:38 AM
great and its working fine.

stained
02-10-2012, 05:53 PM
Thanks for this. Much appreciated :thumbup

Merenguista
03-21-2012, 09:10 AM
great and its working fine.

mbc100
07-27-2012, 01:20 AM
i like it , thanks

FpcH
10-22-2013, 02:03 PM
Although this is an old thread this was exactly what I was looking for.
Thank you. :up:

tanzeelniazi
12-23-2013, 05:58 AM
working fine thank you

furnival
02-11-2014, 12:39 PM
Worked an absolute treat -- many thanks!

steven vaccaro
12-06-2014, 08:52 PM
working thanks!

kkinsey
02-18-2015, 05:43 PM
Thanks, much!

Any reason you didn't do:d = new Date();document.write(d.getFullYear());?

Seven Skins
02-20-2015, 08:06 PM
^ no reason.

This can be done by using this code as well.

<script type="text/javascript">document.write(new Date().getFullYear())</script>

DigitalDawn
01-10-2017, 11:04 AM
How do you get it to say the following:

Copyright © 2017 Forum Name.

Seven Skins
01-10-2017, 12:03 PM
Copyright &copy; <script type="text/javascript">d = new Date();y = d.getFullYear();document.write(y);</script> Forum Name

DigitalDawn
01-14-2017, 01:20 PM
Thank you!