Dean
|
February 26, 2014 at 3:00 am
Hi Frank,
By header I assume you mean the section where the month name, and other buttons are?
If so, then the short answer is that it will not be easy.
Looking at the Fullcalendar documentation (we use that as a base for the calendar) adding anything other than specified strings there will cause nothting to appear (http://arshaw.com/fullcalendar/docs/display/header/) so using the Calendar settings are out.
As such the only thing I can think of is to use JavaScript to inject the link into the header.
Using something like the following in a custom script or plugin could work
jQuery('.fc-header-title').append('<a href="#">TRAINING</a>');
http://take.ms/SqdIz
|