WP Event Manager Gcal Importer
WordPress plugin: import Google Calendar (iCal) into WP Event Manager
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/duppinstech/gcal-to-wpem/archive/refs/heads/main.zipImport events from Google Calendar (public iCal/ICS URL) into WP Event Manager listings. Includes recurring-series handling, optional approval workflow, WP-Cron scheduling, and logging.
Requires: WordPress 6.5+ (for Requires Plugins header) and WP Event Manager active.
Features
- Fetch and parse iCal feeds (via sabre/vobject)
- Map events to
event_listingposts with configurable status and defaults (venue, organizer, location, etc.) - Recurring modes: import all, one-offs only, or queue series for approval
- Automatic sync via WP-Cron (daily at a chosen hour, or every N hours)
- Optional daily email digest for pending approvals
- Admin UI under Event Listings → Import, plus a shortcut tab on WP Event Manager → Settings
Installation
From a ZIP (production)
-
Install and activate WP Event Manager.
-
Build dependencies on a machine with Composer:
composer install --no-dev --optimize-autoloader -
Zip the plugin folder including the
vendor/directory (or deploy the whole folder towp-content/plugins/gcal-to-wpem/). -
In WordPress: Plugins → Add New → Upload Plugin, or copy the folder via SFTP/Git.
From Git (development)
git clone https://github.com/oduppinsjr/gcal-to-wpem.git
cd gcal-to-wpem
composer install
If vendor/ was ever committed before adding .gitignore, drop it from Git once (keep the folder locally):
git rm -r --cached vendor/
Then symlink or copy the folder into wp-content/plugins/ and activate WP Event Manager first, then this plugin.
Configuration
- Event Listings → Import in the admin menu.
- Paste your Google Calendar secret iCal address (Calendar settings → Integrate calendar).
- Set import status, defaults, recurring behavior, and Automatic sync (WP-Cron) as needed.
- Save, then use Run Sync Now or wait for the next scheduled run.
Note: WP-Cron runs when your site gets visits. For reliable timing, use a system cron hitting
wp-cron.phpon a schedule.
Requirements
| Requirement | Notes |
|---|---|
| PHP | 7.4+ (match WP Event Manager / host) |
| WordPress | 6.5+ |
| WP Event Manager | Required; plugin will not load without it |
| Composer (dev/build) | To install vendor/ from composer.json |
Development
composer install
Main entry: gcal-to-wpem.php. Core logic lives under includes/.
Security
See SECURITY.md for how to report vulnerabilities responsibly.
License
Copyright © 2026 Duppins Technology.
This project is licensed under the GNU General Public License v2.0 or later — see LICENSE.
Dependencies (e.g. sabre/vobject) remain under their respective licenses.
Contributing
See CONTRIBUTING.md.