

Admin dashboard with event overview and key metrics
SimplyConf is a comprehensive conference management system built for WordPress. It provides everything you need to run an academic conference — from accepting abstract submissions to managing peer reviews and building event schedules.
Core Features (Free):
Premium Add-ons:
Extend SimplyConf with premium add-ons available at simplyconf.com:
SimplyConf optionally supports Google reCAPTCHA v3 to protect the frontend login and registration forms against automated abuse. This feature is disabled by default and is only activated when a site administrator explicitly enters their reCAPTCHA site key and secret key in the event settings.
When reCAPTCHA is enabled, the following data is sent to Google’s servers during a login or registration attempt:
remoteip to assist Google’s scoring).No data is sent to Google unless reCAPTCHA has been explicitly enabled by the site administrator.
The full, human-readable source code for SimplyConf is included in the plugin package itself.
SimplyConf is built using React and webpack. The compiled files in the dist/ directory are generated from source files located in the src/ directory. The complete human-readable source code — including all React components, Redux state, and build configuration — ships inside the plugin under src/, webpack.config.js, and package.json.
Third-party libraries bundled in dist/ include Redux Toolkit, React, React-DOM, and Ant Design, all of which are open-source packages available on npm.
To reproduce the compiled dist/ files from source:
From the plugin root directory, run:
npm install
npm run build:skip-lint
The npm run build:skip-lint command runs webpack in production mode, which minifies output and sets process.env.NODE_ENV = "production" to strip all development-only code paths.