EntryVault sits on top of your existing form plugin and gives you a real pipeline — Kanban, notes, owners, automations, and email round-trip — all inside WordPress.
EntryVault detects active form plugins at runtime and only loads the matching adapter. No shortcode rewriting, no field re-mapping, no broken integrations.
class Adapter_MyForm extends Adapter_Base {
public function register(): void {
add_action('myform/after_submit', [$this, 'capture'], 10, 2);
}
public function capture($entry, $form): void {
Sync_Engine::on_new_entry([
'source_plugin' => 'myform',
'source_form_id' => $form->id,
'fields' => $entry->to_array(),
]);
}
}
Built with React and @dnd-kit. Stays at 60fps on a Chromebook with eight columns of 200 cards.
Optimistic UI with revert-on-failure.
Full-text across title, email, fields.
Per-user "since last seen" markers.
Per-stage overflow warnings.
A composable engine. Pick a trigger, pick an action, optionally narrow with all/any conditions. Use placeholders to interpolate field values.
Send from inside the lead card. We inject a unique reply token in Reply-To. An IMAP poller runs every 5 minutes and stitches inbound replies back to the right submission — even if the user changes the subject line.
Built on top of WordPress capabilities — your editor / author / custom roles already work. Add per-pipeline view caps for fine-grained team access.
A read-only submissions table for client portals, internal dashboards, or public listings. Configurable columns, capability- or token-gated access.
| Date | Name | Stage | Owner |
|---|---|---|---|
| Apr 24 | Annie Morrison | qualified | Priya R. |
| Apr 23 | Pranav Kumar | proposal | Dharmesh K. |
| Apr 22 | Lena Roth | won | Priya R. |
| Apr 21 | Northgate Ltd. | proposal | Maya A. |
Your data never leaves your WordPress install. No third-party SaaS, no vendor lock-in, no surprise data-residency surprises.
IMAP passwords and tokens are encrypted using a key derived from your AUTH_KEY. Nothing leaves the server in plaintext.
Every REST route checks WP capabilities. Per-pipeline view caps build on the same map_meta_cap filter you already trust.
Free core is GPL-2.0 licensed. Pro modules ship as plain PHP — no obfuscation, no encoder. Read every line you run.
Install the free core from WordPress.org, then add a Pro license whenever you’re ready.