plugin-icon

Calculated Fields Form

Calculated Fields Form: complete WordPress form builder for contact,booking,quote,payment forms & more,with built-in dynamic calculation capabilities.
Ratings
4.9
Version
5.4.7.1
Active installations
40K
Last updated
May 5, 2026
Calculated Fields Form

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.

Features

Core form builder features:

  • Visual drag-and-drop form builder with an intuitive and interactive interface.
  • 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.
  • Conditional logic (dependency rules) to show, hide, enable, or disable fields based on user input — ideal for building guided wizards.
  • Multi-page forms using page break controls between field groups.
  • Field grouping inside container controls (Div, Fieldset, and Popups).
  • Multi-column layout support for organized, professional-looking forms.
  • Dozens of predefined form templates to use as starting points.
  • Multiple design themes and templates.
  • Email notifications sent to the site owner when a form is submitted.
  • Form version history to recover previous versions.
  • Form duplication to reuse existing work.
  • Troubleshooting and optimization tools.
  • Option to exclude forms from search indexing for improved site speed.

Supported calculation types:

  • Financial calculations: totals, taxes, discounts, interest rates, loan amortization.
  • 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.

Professional version features:

  • All features of the free version.
  • Store form submissions on the website for review.
  • Send confirmation emails to users with their submitted data.
  • PayPal integration and Stripe integration — dynamically compute the charge amount using a calculated field. SCA (Strong Customer Authentication) compatible with PSD2 (EU Payment Services Directive).
  • Import and export forms between WordPress sites.
  • Form protection: CAPTCHA, WordPress nonces, and honeypot fields.
  • “Thank You” page with a summary of the form submission.
  • Dashboard widget showing the last week’s form submissions.
  • Form caching to increase rendering speed.
  • Export submissions to CSV for use in Excel, OpenOffice, LibreOffice, or any spreadsheet tool.

Developer version features:

Add-ons included in the Developer version:

Platinum version features:

  • All features of the free, Professional, and Developer versions.

Extending features add-ons:

  • CSV Generator add-on: Export form data to CSV files and attach them to notification emails.
  • PDF Generator add-on: Create PDF documents from submitted form data and include them in emails.
  • Signature add-on: Add e-signature fields — users can sign using a mouse or touchscreen.
  • Unique Fields Values add-on: Ensure submitted values have not been used in previous submissions.
  • iCal add-on: Send iCal attachments in emails for importing events into Google Calendar, Outlook, and more.
  • Upload Files add-on: Save uploaded files to the WordPress media library and support additional file types.

Payment gateway add-ons:

Third-party service integrations:

Third-party plugin integrations:

Calculated fields support any valid JavaScript expression or function. Below are examples of common formula patterns:

Simple arithmetic:

fieldname1 + fieldname2 fieldname1 * fieldname2 fieldname1 / fieldname2 fieldname1 - fieldname2

Multiple fields with grouping:

fieldname1 * (fieldname2 + fieldname3)

Rounding to two decimal places:

PREC(fieldname2 / fieldname3, 2)

Conditional logic inside a formula:

(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:

Additional modules available in Developer and Platinum versions:

Passing external variables to form equations

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

Full documentation: Variable Shortcode Reference

Complementary Plugins

Odoo Contacts, Google Sheets Integration, WhatsApp Button, Xero Contacts, Zoho Leads, Zoom.us Meetings Integration, Data Collector, WooCommerce Products and Variations Prices, Multilanguage Forms, Progress Bar, Upload Files Path, QR Code Generator, Database Queries, Draft Form Data, Email Validator, Reminder Emails, Rich Text Editor, Submissions Removal, Use Limit, Fields Synchronization, RegExp Validation, Autocomplete Fields, Measurement Units Converter, Create Posts, Currency Exchange, hCaptcha, and growing.

Freeon paid plans
Tested up to
WordPress 6.9.4
This plugin is available for download for your site.