Calculated Fields Form

Beskrivelse

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

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.

Skjermbilder

  • Calculated forms list
  • Inserting the form using the Classic Editor
  • Inserting the form using the Gutenberg Editor
  • Inserting the form using Elementor
  • Inserting the form using Page Builder by SiteOrigin
  • Inserting the form using Beaver Builder
  • Inserting the form using WPBakery Page Builder
  • Sample calculated form
  • Calculated field settings
  • Advanced equations editor
  • Form builder interface
  • Editing general fields
  • Available design themes
  • Add-ons section
  • WooCommerce add-on
  • SalesForce add-on
  • WebHook add-on and its integration with Zapier

Blokker

Denne utvidelsen gir 2 blokker.

  • Insert CFF
  • Create var from POST or GET

Installasjon

  1. Download the Calculated Fields Form plugin .zip file.
  2. In your WordPress dashboard, go to Plugins > Add New.
  3. Click the «Upload Plugin» button and select the downloaded .zip file.
  4. Install and activate the plugin.

To build a form, go to the «Calculated Fields Form» menu option in your WordPress dashboard.

To insert a form into any page, post, or template, use the form’s unique shortcode:

[CP_CALCULATED_FIELDS_ID id="1"]

Ofte stilte spørsmål

Is Calculated Fields Form only for forms with mathematical calculations?

No. Despite its name, Calculated Fields Form is a complete, general-purpose WordPress form builder. It can create any type of form: contact forms, booking forms, registration forms, lead generation forms, order forms, survey forms, payment forms, and more. The «calculated fields» are an advanced optional feature — you do not need to use them to build any other kind of form.

Can I use Calculated Fields Form to create a simple contact form?

Yes, absolutely. Creating a simple contact form with name, email, phone, and message fields takes only a few minutes using the visual drag-and-drop builder. You do not need to configure any calculations to use the plugin as a standard contact form.

How does Calculated Fields Form compare to Contact Form 7?

Calculated Fields Form offers a visual drag-and-drop builder, conditional logic, multi-page forms, built-in design templates, form submission storage, real-time field calculations, payment gateway integrations, and a rich add-on ecosystem — all features that Contact Form 7 does not include natively or requires multiple additional plugins to achieve. Both plugins are capable of basic contact forms, but Calculated Fields Form covers a much wider range of use cases out of the box.

How does Calculated Fields Form compare to Gravity Forms?

Both are advanced WordPress form builders. Key differences: Calculated Fields Form is available as a one-time purchase with lifetime updates, while Gravity Forms requires an annual subscription. Calculated Fields Form also provides more powerful real-time calculation capabilities, which in Gravity Forms is limited to simpler field operations. Both offer conditional logic, multi-page forms, and payment integrations.

How does Calculated Fields Form compare to WPForms?

WPForms is beginner-friendly and widely known. Calculated Fields Form matches it in ease of use with its visual builder, and exceeds it in advanced capabilities such as real-time dynamic calculations, formula-driven fields, and the breadth of available add-ons. Calculated Fields Form commercial versions are also one-time purchases, unlike WPForms which uses an annual licensing model.

What controls are included in the plugin?

The plugin provides a wide range of form controls including text fields, email, phone, numbers, currency, date/time pickers, time slot selectors, sliders, radio buttons, checkboxes, dropdown menus, file upload, signature, QR code reader, voice recording, calculated fields, page breaks, summary fields, and container controls. Full details: Field Documentation

Where can I publish a form?

Forms can be published in any WordPress page, post, or template using the form’s shortcode. The plugin also integrates natively with Gutenberg, Elementor, Divi, Beaver Builder, WPBakery, and SiteOrigin page builders. Read more

Can I send the form data and calculated results to the user by email?

Yes. Sending confirmation emails to the user is included in the commercial versions (Professional, Developer, and Platinum). The free version sends notification emails to the site owner. Compare versions

Can I charge users the calculated price through the form?

Yes. Payment gateway integrations (PayPal, Stripe, and many others) are available in the commercial versions. The charge amount is dynamically computed using a calculated field. PayPal configuration | Stripe configuration

What date and time operations does the plugin support?

The plugin supports date differences, age calculations, booking duration, minimum and maximum date constraints based on other fields, and more. Full list of date/time operations

Are financial calculation operations included?

Yes. Financial operations including loan amortization (standard and Italian methods), interest calculations, and other financial formulas are available in the Developer and Platinum versions. Full list of financial operations

Can I pre-populate form fields from URL parameters?

Yes. Form fields can be pre-filled using GET or POST parameters via the [CP_CALCULATED_FIELDS_VAR] shortcode. Full instructions

How do I change the datepicker language?

The datepicker language can be changed directly through the form structure or by uploading a language file to the plugin folder. Instructions

How do I create relationships between date fields?

It is possible to set the minimum date, maximum date, or dynamically select a date based on the value of another date field. Documentation

Can I display fields side by side in the same row?

Yes. The form builder supports multi-column layouts to display several fields on the same line. Blog post on column formatting

How do I display an image inside a checkbox or radio button?

Instructions for image checkboxes and radio buttons

To hide the checkbox or radio button input and show only the image, add this CSS to the «Customize Form Design» field in the Form Settings tab:

fbuilder input[type=»checkbox»] { display: none !important; }

In what order are the equations evaluated?

Details on equation evaluation order

How do I use conditional statements inside a formula?

Multiple approaches to conditional logic in formulas

Can I send notification emails to multiple departments?

Yes. Enter multiple email addresses separated by commas in the «Destination emails» field in the form settings to send the notification to all of them simultaneously.

How do I send only specific fields in the notification email?

Use <%INFO%> to include all submitted fields, or use individual field tags like <%fieldname1%> to include specific fields. Full list of accepted email tags

How do I implement custom calculation operations?

Instructions for custom operations

How do I define conditional dependencies between fields?

Guide to field dependencies

How do I programmatically set the value of a dropdown, radio button, or checkbox?

To set a radio button (fieldname123) to value 5:

getField(123).setVal(5);

To select multiple values in a checkbox (fieldname123) — values 5 and 8:

getField(123).setVal([5,8]);

How do I set a slider value programmatically?

Documentation on setting slider values programmatically

How do I integrate forms with WooCommerce products?

WooCommerce integration guide

How do I generate a PDF from submitted form data?

There are multiple options: the PDF Generator add-on, the PrintFriendly add-on, or the WebMerge add-on.

The form is not appearing on the public website. What should I do?

Try inserting the shortcode with the iframe attribute:

[CP_CALCULATED_FIELDS_ID id="1" iframe="1"]

How do I create a multi-page form?

Insert a «Page Break» control between the fields that belong to different pages.

How do I display a summary of the submitted data?

Insert a summary control in the form and enter the names of the fields to display through its settings.

Can I display a submission summary on the Thank You page?

Yes. Use the shortcode for results on the Thank You page. Details

How do I apply custom CSS styles to form fields?

CSS styling guide for form fields

How do I create a custom design template?

Instructions for creating custom templates

What file types can be uploaded through the form?

List of accepted file types

How do I include links to uploaded files in notification emails?

Instructions for including uploaded file links in emails

Non-Latin characters are not displaying correctly in the form. What is the solution?

Solution for non-Latin character encoding

Vurderinger

19. mars, 2026 1 svar
Easy to use and great support. I tried several before finding this one and it’s perfect. Highly recommended.
19. februar, 2026 1 svar
Works great, as a complete beginner it takes some research, so more intuition would be nice.
Les alle 966 vurderinger

Bidragsytere og utviklere

«Calculated Fields Form» er programvare med åpen kildekode. Følgende personer har bidratt til denne utvidelsen:

Bidragsytere

“Calculated Fields Form” har blitt oversatt til 6 språk. Takk til oversetterne for deres bidrag.

Oversett “Calculated Fields Form” til ditt språk.

Interessert i utvikling?

Bla gjennom koden, sjekk ut SVN-repositoriet, eller abonner på utviklingsloggen med RSS.

Endringslogg

5.4.6.6

  • Enhances the Number, Currency, and Calculated Fields with improved performance and greater flexibility for more accurate and dynamic calculations.
  • Adds support for additional AI providers such as MiniMax and Kimi (Moonshot AI), offering powerful and cost-efficient models compared to other providers.

5.4.6.5

  • Fixes an issue where the initial prefix and postfix symbols were not correctly applied to number fields, and currency symbols were not properly assigned to currency fields when automatic formatting was disabled.

5.4.6.4

  • Fixes an issue displaying the Import Form Fields dialog when the form builder is in fullscreen.

5.4.6.3

  • Enhances the Import Form Fields widget by enabling form grouping into categories within the import popup, improving organization and usability.
  • Refines the Map Widget by removing unnecessary attributes for a cleaner and more efficient implementation.
  • Updates the Anthropic models list by removing deprecated models, ensuring better accuracy and maintainability.

5.4.6.2

  • Updates the Number, Currency, and Calculated fields to ensure that prefix and postfix attribute values are dynamically updated based on other field values.
  • Introduces a Map Widget, enabling maps to be embedded within forms and synchronizing user-selected map pins with single-line text fields.
  • Enhances the AI Form Generation module by increasing token limits and timeout settings, and removing deprecated models from the selection list.