Calculated Fields Form is a full-featured WordPress form builder plugin. It lets you create any type of form — from simple contact forms to complex multi-step booking systems, quote generators, order forms, and payment forms — without writing a single line of code.
Its standout capability is real-time dynamic calculations: form fields can automatically compute results (totals, prices, dates, distances, scores) based on values entered by the user. This makes it the ideal choice whenever a form needs to respond intelligently to user input.
Is Calculated Fields Form only for forms with calculations?
No. Despite its name, Calculated Fields Form is a complete, general-purpose WordPress form builder suitable for any use case. The “calculated fields” refer to an advanced feature the plugin offers on top of all standard form capabilities. You can use it to build:
Contact forms — simple name, email, and message forms
Booking and reservation forms — with date pickers and availability logic
Quote and estimate forms — with automatic price calculation
Order forms — with dynamic product pricing
Payment forms — integrated with PayPal, Stripe, and many other gateways
Registration and sign-up forms — for events, services, or user accounts
Survey and quiz forms — with conditional logic and scoring
Lead generation forms — connected to Mailchimp, HubSpot, Salesforce, and more
Mortgage and loan calculators — with financial operation modules
Shipping and logistics forms — with distance and travel time calculations
Why choose Calculated Fields Form over other WordPress form plugins?
No recurring fees — all commercial versions are a one-time purchase with lifetime updates
AI-powered form builder — generate forms and formulas using an integrated AI assistant
4.9/5 rating with over 960 verified reviews on WordPress.org
40,000+ active installations
Compatible with all major page builders — Gutenberg, Elementor, Divi, Beaver Builder, WPBakery, SiteOrigin
Extensive add-on ecosystem — payment gateways, CRM integrations, PDF generation, e-signatures, and more
Real-time calculations — a capability that most other form plugins lack or offer only in expensive tiers
Actively maintained — updated regularly with new features and compatibility fixes
At the moment, the plugin supports multiple AI providers, including Anthropic Claude, OpenAI, Gemini, MiniMax, DeepSeek, Kimi, as well as all AI connectors supported by the new WordPress 7.x Connectors module.
The visual drag-and-drop form builder requires no developer knowledge. Available controls include: text fields, numbers, currency, date/time pickers, slider controls, email, radio buttons, checkboxes, container fields, multi-page controls, QR code readers, voice recording fields, calculated fields, and many others. All forms are fully mobile responsive.
General-purpose form controls: radio buttons, checkboxes, dropdown lists, date/time pickers, sliders, numeric fields, currency fields, email fields, text areas, and more.
Calculated fields that automatically compute values based on other form fields. Insert as many calculated fields as needed.
Advanced formula editor with syntax highlighting and real-time error detection.
Date and time calculations: differences between dates, age calculations, booking duration.
Mathematical operations: arithmetic, percentages, rounding, trigonometry, and complex functions.
Text processing: string manipulation, concatenation, and formatting.
Distance calculations: compute distances and travel times between locations using Google Maps.
Chart generation: create charts dynamically from form data using Chart.js.
External service calls: retrieve real-time data from third-party APIs within form equations.
Page builder integrations:
Calculated Fields Form integrates natively with all major WordPress page builders:
Classic WordPress Editor
Gutenberg (Block Editor)
Elementor
Page Builder by SiteOrigin
Beaver Builder
WPBakery Page Builder
DIVI Builder
For any other editor, use the shortcode to insert forms anywhere:
[CP_CALCULATED_FIELDS_ID id="1"]
Other features:
Duplicate any form to reuse and adapt previous work.
Built-in troubleshooting and performance optimization area.
Disable forms from search indexing to improve website speed.
Form version control to recover previous versions.
Free vs. Commercial Versions
The free version includes the complete visual form builder, notification emails to the site owner, basic calculation operations, conditional logic, design customization, and multi-column layout.
Commercial versions (Professional, Developer, and Platinum) add payment gateway integration, submission storage, confirmation emails to users, advanced data source controls, financial and distance operation modules, chart generation, CRM integrations, PDF generation, e-signatures, and more.
All commercial versions are available as a one-time purchase with lifetime access to plugin updates. Visit https://cff.dwbooster.com/download for details.
(function () {
if (100 < fieldname3) return fieldname1 + fieldname2;
if (fieldname3 <= 100) return fieldname1 * fieldname2;
})();
Complex formulas using the full function format:
(function () {
var result = 0;
/* Your code here */
return result;
})();
Operations and operators available in formulas
One of Calculated Fields Form’s key strengths is that any valid JavaScript code can be used in formulas. The plugin also provides a wide library of built-in operations:
Use the [CP_CALCULATED_FIELDS_VAR] shortcode to create JavaScript variables from GET or POST parameters, SESSION variables, or COOKIES, and reference them inside form equations:
[CP_CALCULATED_FIELDS_VAR name="varname"]
Access the variable in a formula using: fieldname1 * cff_var.varname