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
Once you have more than 100 events (pages with the Event Content Type), the main calendar will stop displaying new events because the default maximum number of results returned in the _cms/formats/outputs/xml/events-xml query is 100.
Workaround
Add a maxResults parameter to the _cms/formats/outputs/xml/events-xml query strings at approximately Lines 5-9:
Note: .maxResults(-1) will return the maximum number of assets permitted which is currently 2000 assets but you can set this to a lower integer if needed. Also consider archiving or deleting older events to save rendering time on the full calendar.
The text was updated successfully, but these errors were encountered:
megoconnor
changed the title
Calendar - Improvement: Increase total number of events that can be displayed on the main calendar
Calendar - Improvement: Increase maximum number of events that can be displayed on the main calendar
Jun 16, 2020
Description
Once you have more than 100 events (pages with the
Event
Content Type), the main calendar will stop displaying new events because the default maximum number of results returned in the_cms/formats/outputs/xml/events-xml
query is 100.Workaround
Add a
maxResults
parameter to the_cms/formats/outputs/xml/events-xml
query strings at approximately Lines 5-9:Note:
.maxResults(-1)
will return the maximum number of assets permitted which is currently 2000 assets but you can set this to a lower integer if needed. Also consider archiving or deleting older events to save rendering time on the full calendar.The text was updated successfully, but these errors were encountered: