Events Manager – Calendar, Bookings, Tickets, and more!
Events Manager is a full-featured event calendar, bookings, appointments, scheduling, and registration management plugin for WordPress ideal for everything from simple meetups to full-scale event planning. Built with flexibility, reliability and powerful features in mind. Demo Documentation Tutorials Main Features NEW Integrate easily with your favourite AI via MCP, unlock the power of AI-powered Events! NEW API Rest Integration NEW EU Compliance Tools for “Right of withdrawal” (EU ‘Widerrufsbutton’) Beautiful calendars, search pages, lists, grids and booking forms to enhance your site events. Easy event registration (single day with start/end times) Recurring and long (multi-day) event registration Build complex recurrence patterns with exclusion/blackout dates NEW Multiple timeslots within the day for events with advanced creation options Overlapping timeslots Buffer between timeslots Bookings Management (including approval/rejections, export CVS, and more!) Multiple Tickets Fully-featured graph and statistics including bar/line/pie with comparison and stacking MultiSite Event Support Cross-Network Event Sharing – show your events and booking fromss on other subsites or main site Network-wide Global Booking Management BuddyPress and BuddyBoss Support Create modular (independent) event subsites or inter-networked events Multiple custom event types (Archetypes), such as Workshops, Events, Webinars, Appointments etc. Customize your labels, slugs and CPT names Enable or disable specific features for specific event archetypes. Multiple Location Types Physical Locations Online Events (URLs) Zoom Webinars/Meetings Integration BuddyPress & BuddyBoss Support Submit Events Group Events Personal Events Activity Stream more on the way Guest/Member Event submissions Assign event locations and view events by location Event categories Easily create custom event attributes (e.g. dress code) Google Maps (see our API usage recommendations) Advanced permissions – restrict user management of events and locations. Widgets for Events, Locations and Calendars Fine grained control of how every aspect of your events are shown on your site, easily modify templates from the settings pages and template files iCal Feed (single and all events) Add to Google Calendar buttons RSS Feeds Compatible with SEO plugins Timezone Support – create events in different timezones Plenty of template tags and shortcodes for use in your posts and pages Gutenberg block editor support, with native blocks for the Events Calendar, Events List, and Locations List — usable in posts, pages, the site editor and the widget editor Actively maintained and supported Lots of documentation and tutorials NEW Gutenberg Supported And much more! AI Integration AI is here, and we’re on board! Check out what’s possible with our new and evolving AI integration possibilities: Data Privacy and GDPR Compliance We provide the tools to help you be GDPR compliant, including: export/erasure of data via the WordPress Privacy Tools, including booking, event and location data consent checkboxes on our booking, event and location forms on the frontend settings to control what can be exported/erased as well as where/when to place consent requests sample text for your site privacy policy describing what Events Manager does with personal data Premium Features We have a premium Pro add-on for Events Manager which not only demonstrates the flexibility of Events Manager, but also adds some important features including but not limited to: WooCommerce integration (sold separately) PayPal, Stripe, Authorize.net, Square, Xero and Offline Payments Custom booking forms Individual Attendee custom forms Upload fields for bookings, attendees and users Printable Invoices and Tickets Send PDF tickets/invoices by email automatically Check In/Out Move bookings to other dates/times QR Scanning Manage bookings on your phone Check In/Out users Waitlists Automation – ultimate flexibility in automation! Triggers: X time before/after events start When a booking status changes When a booking was booked x time ago Actions Send Webhook (Zapier, MS Automation and many other services) Send Email Send WhatsApp, SMS, Telegram notifications WhatsApp, SMS, Telegram integration and interactive flows Coupon Codes Custom booking email per event and gateway Faster support via private Pro forums For more information or to go pro, visit our plugin website. Additional Plugin Integrations Whilst there’s many third party integrations with our own plugin, here’s some we’ve integrated ourselves! Included in Events Manager (automatic integration) BuddyPress WP FullCalendar Thrive Automator Additional Add-Ons Zoom WPML Multilingual Sites
Top keywords
- events24×3.50%
- event16×2.34%
- booking9×1.31%
- integration7×1.02%
- support6×0.88%
- bookings5×0.73%
- custom5×0.73%
- events manager5×0.73%
- including5×0.73%
- locations5×0.73%
- manager5×0.73%
- site5×0.73%
Fathom Analytics Conversions
This Fathom Analytics partner plugin makes it easy to enable WordPress forms and pages as Fathom Analytics Events with no code. 👉 Go to the official Fathom Analytics plugin What does this companion plugin do? Makes it easy to track user actions such as form submissions and landing page visits as events in your Fathom Analytics account. Best of all no technical knowledge is required to implement events on your site. Key Features No code event tracking for marketers and website owners Common form plugins supported Make any page or post an Event Synchronized event names between website and analytics Watch the setup walkthrough This is not an official Fathom plugin This WordPress plugin “Fathom Conversions” is not part of, or associated with “Fathom Analytics” by Conva Ventures Inc. ⚠️ Warning BETA API in use This plugin uses the Beta Fathom Analytics API, which is still in early access, and subject to changes in the future, this plugin could stop working without warning if updates occur. Privacy Notices This plugin: does not track any users stores plugin settings and event mappings in the WordPress database sends data to the Fathom Analytics servers – more information can be found on Fathom Analytics website Demo You can find more information about the plugin, and see a demo and installation instructions on the Fathom Conversions website Requirements For this to work you will need a paid Fathom Analytics account (get $10 off your first month with this link) And a supported WordPress plugin listed below installed and active. Currently supported plugins Contact Form 7 WPForms & WPForms Pro Gravity Forms Ninja Forms & Ninja Forms Pro Fluent Forms & Fluent Forms Pro WooCommmerce For Developers Fathom Analytics Conversions provides hooks and helper functions so that plugin and theme developers can fire Fathom conversion events from their own code. Quick Start The simplest way to fire a conversion from your plugin: // Fire a basic conversion event. add_action( 'wp_footer', function() { do_action( 'fac_track_event', 'My Custom Conversion' ); }); // Fire a conversion with a monetary value (in cents, e.g. 1999 = $19.99). add_action( 'wp_footer', function() { do_action( 'fac_track_event', 'Premium Signup', 4999 ); }); The event name you pass here will appear in your Fathom Analytics dashboard. If the event doesn’t exist yet, Fathom will create it automatically on the first fire. PHP Helper Function You can also call the helper function directly: /** * fac_track_conversion( string $event_name, int $value = 0 ) * * Outputs a fathom.trackEvent() script tag on the frontend. * Must be called during or before wp_footer output. * * @param string $event_name Event name (shown in Fathom dashboard). * @param int $value Optional. Value in cents. Default 0. */ add_action( 'wp_footer', function() { if ( function_exists( 'fac_track_conversion' ) ) { fac_track_conversion( 'Booking Confirmed', 15000 ); } }); Both methods automatically check that Fathom Analytics is active and respect excluded user roles — you don’t need to add those checks yourself. Available Filters You can customize event names for built-in integrations using these filters: fac_woocommerce_order_title — Customize the WooCommerce order event name. Default: “WooCommerce Order”. fac_login_event_title — Customize the login event name. Default: “WP Login”. fac_registration_event_title — Customize the registration event name. Default: “WP Registration”. fac_lost_password_event_title — Customize the lost password event name. Default: “WP Lost Password”. Example: add_filter( 'fac_woocommerce_order_title', function( $title ) { return 'Shop Purchase'; }); Adding a Custom Integration to the Settings Page Use these filters and actions to add your own integration checkbox to the plugin’s settings page: // 1. Add a default option. add_filter( 'fac4wp_global_default_options', function( $defaults ) { $defaults['integrate-my-plugin'] = false; return $defaults; }); // 2. Add a checkbox to the Integration section. add_filter( 'fac4wp_integrate_field_texts', function( $fields ) { $fields['integrate-my-plugin'] = [ 'label' => 'My Plugin', 'description' => 'Track conversions from My Plugin.', 'phase' => 'fac4wp-phase-stable', 'plugin_to_check' => 'my-plugin/my-plugin.php', ]; return $fields; }); // 3. Fire the conversion when your plugin's action completes. add_action( 'wp_footer', function() { $options = get_option( 'fac4wp-options', [] ); if ( ! empty( $options['integrate-my-plugin'] ) && my_plugin_conversion_happened() ) { do_action( 'fac_track_event', 'My Plugin Conversion' ); } }); JavaScript API If you need to fire a Fathom event directly from JavaScript (e.g., after an AJAX action), you can call the Fathom tracking function directly. The Fathom Analytics script exposes a global fathom object: // Basic event fathom.trackEvent('My JS Event'); // Event with monetary value (in cents) fathom.trackEvent('My JS Event', { _value: 1999 }); Note: The fathom object is only available on the frontend when the Fathom Analytics plugin is active and the tracking script has loaded. Utility Functions These functions are available for checking the plugin state: is_fac_fathom_analytic_active() — Returns true if Fathom Analytics tracking is active. fac_fathom_is_excluded_from_tracking() — Returns true if the current user’s role is excluded. FAC_Options::get( $key ) — Retrieve a specific plugin option value.