Mission is a free, open-source WordPress donation plugin built for nonprofits. Accept one-time and recurring donations, manage donors and campaigns, give your supporters a self-service dashboard, and track everything from a modern admin — without paying for a single add-on.
Most donation plugins lock the features you actually need behind a paid tier. Recurring donations? Add-on. Custom fields? Add-on. Donor dashboards, fee recovery, exports? Add-on, add-on, add-on. Mission takes a different approach: every feature ships in the free plugin, and we’re funded by an optional tip donors can choose to add at checkout. Donors can change the tip, lower it, or set it to zero. 100% of the donation amount always reaches your nonprofit.
The result is a donation platform that grows with your organization without surprise upgrade prompts. The plugin you install today is the plugin handling your donations next year, with no upsell screens between you and your supporters.
No paid add-ons. Ever.
Recurring donations, donor dashboards, campaign management, custom fields, tribute donations, fee recovery, exports, activity logs — all included in the free plugin. There is no “Mission Pro” version, no premium tier, and no upsell at checkout.
Modern donation forms that convert.
Multi-step forms with suggested amounts, custom amounts, tribute dedications, anonymous donations, optional fee recovery. Built to feel quick and trustworthy on every device.
Built for performance.
The donation form is built on the WordPress Interactivity API — no React on the public-facing site, no bloated JavaScript, fast page loads for your donors. Donor data lives in dedicated database tables, not post meta, so reporting stays fast as your donor list grows into the thousands.
The Donation Form block can be dropped into any post, page, or campaign. Configure it once and it adapts to your campaign and your brand:
!important rules so themes can restyle freelyRecurring donations are the single biggest revenue lever for nonprofits, and they’re the feature most plugins charge extra for. Mission ships them free:
Drop the Donor Dashboard block on any page and your supporters get a self-service portal. They can:
Every action your donors can take in the dashboard is one less email in your inbox.
Run a single ongoing campaign or dozens of named campaigns side by side:
Mission ships eleven campaign and donation blocks: donation form, donate button, campaign card, campaign grid, campaign image, campaign progress bar, campaign statistic, donor wall, recent donors, top donors, and donor dashboard. Mix and match them to build campaign pages that match your brand.
The admin dashboard surfaces what fundraisers care about: total revenue, donation count, average donation, repeat donor count, top donor, and month-over-month growth — in test and live modes side by side.
Need the data outside WordPress? Export donors, transactions, campaigns, and subscriptions to CSV or JSON in a single click.
A built-in activity log records every donation, refund, subscription event, webhook, email, and admin action with a 90-day retention window so you can audit anything that happened on your site.
Mission processes donations through Stripe Connect with direct charges:
Stripe is currently the only supported gateway. We chose to build a single deep gateway integration before adding more.
Mission is built to fit any organization or individual raising money online:
Mission is funded by donor tips, not by selling features. Here’s exactly how that works:
Mission is open source and built to be extended. Eighty-plus actions and filters let you hook into every major event, customize every output, and integrate with the rest of your stack. A few examples:
missiondp_donation_form_settings — customize per-form configurationmissiondp_transaction_status_{from}_to_{to} — react to donation status changesmissiondp_email_template_{type} — customize email templatesmissiondp_receipt_html — customize receipt PDF outputmissiondp_settings_updated — react to setting changesA REST API exposes every entity for headless integrations, and a model-based data layer (Donor::find(), Campaign::query(), Transaction::create()) makes integrations clean to write and easy to maintain.
The full source — including all build sources — lives at github.com/mission-wp/mission.
The full, unminified source code for this plugin is publicly available on GitHub at https://github.com/mission-wp/mission
The repository contains the original .js, .jsx, and .scss files for every compiled asset shipped in admin/build/ and blocks/build/. To build the plugin from source:
composer install
npm install
npm run build
See the README in the repository for full development setup, contribution guidelines, and a description of the build pipeline.
This plugin connects to the following third-party services:
Mission uses Stripe to process donations. When a donor submits a donation form, payment data is sent directly from the donor’s browser to Stripe’s servers via Stripe.js. The plugin also receives webhook notifications from Stripe for payment confirmations, refunds, and subscription updates.
Mission connects to api.missionwp.com (operated by the plugin author) for the following:
Feature signup — If you opt in to notifications about upcoming features (under Tools > Features), your email is sent to the Mission API.
Mission uses Gravatar to display profile images for donors in the admin dashboard (Donors and Transactions screens) and on the public-facing Donor Wall block. When one of these views is rendered, the visitor’s browser requests an avatar image from https://www.gravatar.com/avatar/{hash} where {hash} is an MD5 hash of the donor’s email address. Donor email addresses themselves are never sent to Gravatar — only the hash. If a donor has no Gravatar account, a blank placeholder is returned. No request is made if a donor record has no email on file.