Our Community Events plugin works with recurring events and the Series feature when using Events Calendar Pro version 6.0+ and the latest version of Community Events. However, some Series functionality is limited specifically to admin users.

Creating recurring events

To create or edit an event on the front end, click Add more events, and select daily, weekly, monthly, or yearly recurrence. From there, you’ll see additional options to configure your recurring event, similar to those available to admins from the WordPress dashboard.

When a user creates a recurring event on the frontend, a Series of the same name will automatically be created and associated with it. Only admins can edit Series.

As a community organizer, it’s important to note that if you are editing a recurring event from the front end, you are always editing all occurrences (i.e. changes will be made on all dates of the recurring event).

Adding an event to a Series on the front end

By default, the front-end form does not allow a user to manually assign an event to a Series. If you’d like to include that option, you can do so with a filter. This will allow community organizers to add events to an existing Series. They will not have the ability to manually create a new Series.

Add the following snippet to your theme’s functions.php file to allow this functionality:

add_filter( 'tec_community_events_use_series', '__return_true' );

Once you add this snippet, community organizers will see a Series option available when creating or editing an event on the frontend.