You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DOCUMENTATION.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,16 @@ If you'd like to have a different event timezone default than the app default (u
12
12
13
13
The default collection for your events is `events`, if you use a different one, publish the config file and then update it via the CP.
14
14
15
+
For the ICS downloads, you can have a "location" field. By default Events uses a field named 'location' but if you need something different add it to the config:
16
+
17
+
```php
18
+
'collections' => [
19
+
'events' => [
20
+
'location_field' => 'your_location_field',
21
+
],
22
+
],
23
+
```
24
+
15
25
## Fieldset
16
26
17
27
In your collection's blueprint, make sure you have fields like in our sample [fieldset](https://github.com/transformstudios/statamic-events/blob/main/resources/fieldsets/event.yaml).
@@ -218,7 +228,7 @@ Tag pair that returns the next X event dates.
218
228
219
229
### Download Links
220
230
221
-
Single Tag returns a url to the event data and add it to your calendar.
231
+
Single Tag returns a url to the event data and add it to your calendar. If there's a "location" field (see config above), it'll get added to the download.
0 commit comments