Neural Forms Lite is a modern contact form plugin that turns your WordPress site into an AI-powered lead management system. Build forms visually, receive submissions in a clean lead inbox, and let AI summarize each lead, assign priority, and draft a reply — all from your WordPress dashboard.
Most form plugins stop at collecting submissions. Neural Forms starts there. Every submission is automatically analyzed by AI, categorized by intent, scored by priority, and paired with a draft reply you can send with one click. It is the difference between a form plugin and a lead management system.
✅ Visual Form Builder — Drag-and-drop fields, live preview, and instant publishing via shortcode or Gutenberg block.
✅ 16 Field Types — Text, email, textarea, phone, URL, number, date, select, radio, checkbox, checkboxes, file upload, hidden, range, acceptance, and more.
✅ Lead Inbox — View, search, filter, star, and triage submissions with status management. Keyboard shortcuts for power users.
✅ AI Auto-Analysis — Every submission gets an AI-generated summary, category, priority score, and draft reply.
✅ Reply From Your Inbox — Send replies directly from the entry detail view. Every reply is logged in a message thread.
✅ CSV Export — Export entries per form with date-range filtering.
✅ Spam Protection — Cloudflare Turnstile and Google reCAPTCHA v2 built in. Choose your provider.
✅ Email Notifications — Configurable admin alerts and customer auto-responder emails.
✅ Privacy Mode — Toggle IP and user-agent storage off with one click. GDPR-friendly.
✅ Contact Form 7 Import — Detect and migrate your existing CF7 forms in one click.
✅ Full Block Editor Support — Native Gutenberg block with 150+ styling attributes including per-corner radii, gradients, hover states, font controls, button transitions, and success/error message styling.
✅ Developer Friendly — Action hooks, filter hooks, capability gates, and a React SlotFill registry for extensions.
Neural Forms uses the Neural Forms Cloud service to analyze submissions. When a visitor fills out your form:
The AI features require a Neural Forms Cloud API key, which you can get for free at neuralforms.ai.
Freelancers and agencies managing client inquiries
Small businesses handling contact and support forms
SaaS companies triaging inbound leads
Bloggers and creators collecting feedback
WooCommerce stores managing pre-sale questions
Anyone tired of reading raw form submissions
No configuration headaches. No third-party accounts required for basic form functionality.
Looking for more? Neural Forms Pro adds Divi 5 Visual Builder integration, AI spam detection, advanced AI models, and more. Visit neuralforms.ai for details.
Full documentation is available at neuralforms.ai/documentation.
This plugin optionally connects to external third-party services. No connections are made unless you explicitly enable and configure them.
Neural Forms Cloud
When you enable AI features and enter a Neural Forms Cloud API key in Settings, the plugin sends form submission content (the text your visitors enter) and form field metadata to the Neural Forms Cloud API for AI analysis. This includes generating submission summaries, categories, priority scores, and draft replies. No data is sent unless you have enabled Cloud AI and provided an API key. The plugin never sends IP addresses, WordPress admin credentials, or WordPress core data to this service.
Cloudflare Turnstile
When you select Cloudflare Turnstile as your CAPTCHA provider and configure your site and secret keys, the plugin loads the Turnstile challenge script on pages with forms and verifies visitor responses server-side via the Cloudflare API. This service is only used when Turnstile is selected as the CAPTCHA provider in Settings.
Google reCAPTCHA v2
When you select Google reCAPTCHA v2 as your CAPTCHA provider and configure your site and secret keys, the plugin loads the reCAPTCHA challenge script on pages with forms and verifies visitor responses server-side via the Google API. This service is only used when reCAPTCHA v2 is selected as the CAPTCHA provider in Settings.
Neural Forms ships pre-built JavaScript and CSS files in modules/admin/build/ so the plugin works on a clean WordPress install without a Node toolchain. The compiled/generated files are:
modules/admin/build/index.js — admin React SPA (Forms, Entries, Stats, Settings)modules/admin/build/index.css and modules/admin/build/index-rtl.css — admin stylesmodules/admin/build/block.js — Gutenberg block (neural-forms/form) editor scriptmodules/admin/build/index.asset.php and modules/admin/build/block.asset.php — auto-generated WordPress dependency manifestsThe complete, human-readable source for every generated/compressed file above is included inside this plugin package under:
modules/admin/src/ — React + CSS source (admin SPA entry, block entry, screens, components, styles)modules/admin/package.json — npm dependency list and build scriptsmodules/admin/package-lock.json — exact dependency versions (lockfile)modules/admin/webpack.config.js — webpack configuration (extends @wordpress/scripts)
modules/admin/build/index.js is built from modules/admin/src/index.js and the modules it imports. modules/admin/build/block.js is built from modules/admin/src/block-index.js. Both are bundled by @wordpress/scripts (webpack + Babel) using the entry points declared in modules/admin/webpack.config.js. No obfuscation, packing, or encoding step is applied.
To rebuild the generated assets from source:
Run:
cd modules/admin
npm install
npm run build
This regenerates the files in modules/admin/build/ from modules/admin/src/.