ICS Export

This is a bonus feature

Export Events by Month

With the bonus add-ons, you have the ability to export events through an iCal feed. By default, an "Export Events" button appears below the calendar in the full calendar months display. You can view an example here.

Clicking the button will export the events that occur during the currently displayed month. The button only appears if there are events displayed in the calendar.

Export Events by Year

Since there is no year view with the calendar, there is no automatic way to get a feed for the events spanning the whole year.

You can configure a link to export the full year by specifying URL parameters:

ics=1 tells the website that we need an iCal feed
yr=1 tells the website to export the current year
yr=2020 tell the website to export the specific year 2020

An example link to export year 2020:

https://example.com?ics=1&yr=2020

Notes

If you want to remove the "Export Events" button you can hide it with the following CSS rules:

.spiffy-ics {
display: none;
}