WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: calculated-fields-form (Used by 714 domains)

Calculated Fields Form

👤 codepeople 📦 v5.4.5.9 🔗 Plugin Homepage

Absolutely! The “Calculated Fields Form” plugin unlocks a wide range of powerful features for building dynamic and interactive forms. Its AI form generator and assistant offer outstanding support, helping you quickly create forms, develop complex calculation formulas, and design fully customized solutions with ease and precision.

Here’s a breakdown of what you can achieve:

Financial Calculations: Design forms that automatically compute totals, taxes, discounts, and other financial metrics.

Booking Forms: Seamlessly handle date operations, availability checks, and booking calculations.

Product Pricing: Dynamically calculate product prices based on user inputs or predefined rules.

Math Operations: Perform basic arithmetic, percentages, and complex mathematical functions.

Text Processing: Manipulate text fields, concatenate strings, and format data.

Date Operations: Handle date differences, age calculations, and time-related tasks.

Advanced Operations:

Distance Calculations: Compute distances between locations.

Chart Generation: Create charts dynamically based on form data.

Third-Party Service Integration: Call external APIs or services for real-time data retrieval.

And the best part? All resulting forms are mobile responsive, ensuring a seamless experience across devices.

The most remarkable aspect is that you don’t need to hire a developer to create forms. With basic knowledge, you can have professional forms in minutes.

The form builder is entirely visual, offering a wide selection of controls (Text fields, Numbers, Currency, Date/time, Slider control, Email, Radio buttons, Checkboxes, Container fields, Multi-page control, QR code reader, Recording, Calculated fields, and many others). This versatile toolkit empowers you to create customized forms effortlessly.

Features

Main features:

  • Visual form builder with an intuitive and interactive interface.
  • Includes general-purpose controls such as radio buttons, checkboxes, menu lists, date fields, slider controls, numeric fields, text currency fields, etc.
  • Includes calculated fields whose values result from operations involving other form fields.
    Insert as many calculated fields in the form as you need.
  • Contains an advanced formula editor associated with the calculated fields with syntax highlighting and error detection.
  • Features many operations modules: mathematical operations, operations with dates, financial operations, distance operations, text management, operations for calling remote services, etc. The calculated fields can identify numbers and prices within the values of the fields.
  • Send notification emails with the data collected by the form.
  • Distributed with several predefined forms that you can use as a starting point for your projects.
  • Includes several design templates.
  • Supports multi-pages forms by inserting page break controls between fields belonging to different pages.
  • Possible to define dependency rules between fields in the form, which is very useful in the design of wizards.
  • Allows the grouping of fields inside container controls (Div, Fieldset, and Popups).
  • Enables formatting the form into columns for a more organized layout.

The “Calculated Fields Form” plugin includes integration with popular page builders:

  • Classic WordPress Editor
  • Gutenberg Editor
  • Elementor
  • Page Builder by SiteOrigin
  • Beaver Builder
  • WPBakery Page Builder
  • DIVI Builder

For other editors, it is possible to insert the form into the pages via its shortcode. Each web form has an associated shortcode that allows you to insert it wherever you want.

[CP_CALCULATED_FIELDS id="1"]

Other features:

  • From the plugin configuration page, it is possible to duplicate a form by pressing the “Duplicate” button associated with it. By dupplicating a form, you can reuse the work already done.
  • Includes a troubleshooting and optimization area.
  • Allows you to disable forms in the indexing process to improve the speed of the website.
  • Includes a version control in the forms to recover previous versions.

Predefined forms:

“Calculated Fields Form” comes with dozens of predefined forms that you can select during the form creation process, or you can build new forms from scratch.

Calculated Fields Form Commercial
The free version of the “Calculated Fields Form” plugin provides essential functionality, including sending notification emails to the website owner with the form data, basic operations for use with equations, and core features such as customizing form design, setting up conditional fields, and modifying the form layout. More advanced distributions, Professional, Developer, and Platinum, come with additional capabilities such as sending copy emails to form users, integration with payment gateways and external services, controls for managing database connections (including links to external data sources like Google Sheets in CSV format), and a variety of complex operations. All commercial versions are available as a one-time purchase with lifetime access to plugin updates. ( https://cff.dwbooster.com/download )

Features of the Professional version:

The commercial plugin versions are one-time purchase with lifetime access to plugin updates ( https://cff.dwbooster.com/download )

  • Includes all the features of the free version of the plugin.
  • Submit the data collected by the forms and store it on the website for review.
  • Send confirmation emails to the users with the data collected by the form.
  • Integrate the form with PayPal and Stripe. Dynamically compute the charge amount using a calculated field.
    Payments allow SCA (strong customer authentication), compatible with the new payment services (PSD 2) – Directive (EU).
  • Export and import forms between different WordPress sites.
  • Different mechanisms to protect forms, such as captcha, WordPress nonces, and honeypot fields.
  • Associate “Thank You” page with the form, where you can show a summary of the form’s submission.
  • Dashboard widget to show the last week’s submissions.
  • Cache the forms to increase the rendering speed.
  • Export the information submitted by the forms to a CSV file and use it with third-party tools such as Excel, OpenOffice, LibreOffice, or any other spreadsheet editor.

Features of the Developer version:

Includes add-ons to extend the form features and make use of third-party plugins and external services

Features of the Platinum version:

  • Includes all the features of free, Professional, and Developer versions of the plugin.

Extending features add-ons

  • CSV Generator add-on: Exports form data to CSV files and attaches them to notification emails.
  • PDF Generator add-on: Creates PDF documents from form data and includes them in notification emails.
  • Signature add-on: Converts fields into signature fields so users can sign using a mouse or touchscreen.
  • Unique Fields Values add-on: Ensures users enter values that haven’t been used in previous submissions.
  • iCal add-on: Sends iCal attachments in emails for importing events into Google Calendar, Outlook, and more.
  • Upload Files add-on: Saves uploaded files to the WordPress media library and supports additional file types.

Payment Gateways add-ons

Integration with third-party services add-ons

Integration with third-party plugins add-ons

Below, some possible formulas are included as examples, but the possibilities are endless.

  • With simple mathematical operations:

    fieldname1 + fieldname2
    
    fieldname1 * fieldname2
    
    fieldname1 / fieldname2
    
    fieldname1 - fieldname2
    
    fieldname1 - fieldname2
    
  • With mathematical operations involving multiple fields and grouped fields:

    fieldname1 * (fieldname2 + fieldname3)
    
  • With rounding operations. Round the result to two decimal places:

    PREC(fieldname2 / fieldname3, 2)
    
  • There are infinite number of formulas that can be created using complex structures. For example, the following formula includes conditional statements:

    (function () {
    if (100 < fieldname3) return fieldname1 + fieldname2;
    if (fieldname3 <= 100) return fieldname1 * fieldname2;
    })();
    
  • For complex formulas/equations you must use the function format with return statement to return the result to the calculated field:

     (function () {
        var result = 0;
        /* Your code here */
        return result;
    }) ();
    

Operations and operators to use in equations/formulas

One of the “Calculated Fields Form” strengths is the ability to use any valid JavaScript code to implement the equations/formulas.

However, the plugin includes a wide variety of operations and operators to simplify the development process.

Mathematical Operations and Operators

Conditional Operations

Field Handling Operations

Operations for interacting with external services

Operations for handling URLs and query strings

In addition to the operation modules listed above, the Developer and Platinum versions of the plugin include additional modules:

Date Time Operations

Financial Operations

Distance and Travel Time Operations

Operations to generate charts

Create variables from parameters received by “GET” or “POST”, “SESSION” variables, or “COOKIES” to use in the equations

The plugin includes the shortcode [CP_CALCULATED_FIELDS_VAR] to generate JavaScript variables from parameters received by “GET” or “POST”, “SESSION” variables, or “COOKIES”:

[CP_CALCULATED_FIELDS_VAR name="..."]

In the shortcode, you must replace the “…” symbols with the name of the parameter or variable. The variables are created as properties of the cff_var variable. For example, in the [CP_CALCULATED_FIELDS_VAR name=”my_var”] shortcode, you can access the variable value from the equations by using cff_var[‘my_var’], or cff_var.my_var

For example:

[CP_CALCULATED_FIELDS_VAR name="varname"]

You can use the variables generated through the shortcode [CP_CALCULATED_FIELDS_VAR] in the formulas of the calculated fields: fieldname1*cff_var.varname

The complete list of parameters accepted by the variables shortcode is available at the following link: CLICK HERE

Complementary Plugins

Odoo Contacts, Google Sheets Intergration, [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…

DomainExposuresHeadersLast Checked
a*v*r*s*.com (WP 6.2.9) ⚠️ F 2026-07-24 21:13:46
a*v*3.fi (WP 6.9.5) F 2026-07-24 19:33:37
d*v*s*s*a*i*j*.com F 2026-07-24 18:24:52
m*t*e*s*a*e*u*d*a*s*n*.com D 2026-07-24 17:06:16
s*r*k*n*-*a*e*l*n*.cz (WP 4.9.26) ⚠️ F 2026-07-24 15:30:32
w*e*e*s.expert (WP 7.0.2) F 2026-07-24 08:56:39
l*c*a*o*l*d*n*.c*.uk 👤 C 2026-07-24 08:15:39
k*s*r*-*n*o.com 👤 F 2026-07-24 07:25:23
g*l*a*k*u*.de F 2026-07-24 06:28:35
d*s*e*i*r*e*.com D 2026-07-24 05:15:03
s*p*r*d*o*e*.sk F 2026-07-24 02:13:40
g*k*o*o*s.fr (WP 6.9.5) 👤 F 2026-07-24 00:07:38
c*i*u*g*e*a*d*m*n*l*-*b*s*t*-*r*c*o*o*i*.com A 2026-07-24 00:01:06
s*e*l*n*d*t*c*m*a*y.com F 2026-07-23 20:21:08
c*i*e*e*r*n*.com (WP 7.0.2) F 2026-07-23 19:22:03
t*j*u*s.ch F 2026-07-23 19:00:14
p*p*u*d*.com D 2026-07-23 18:59:30
o*k*4.com (WP 7.0.2) 👤 F 2026-07-23 18:31:22
c*i*a*a*e*b.com F 2026-07-23 16:54:05
b*o*-*n*.pl (WP 6.8.2) 👤 F 2026-07-23 16:33:08
o*e*m*n*e*a*.com F 2026-07-23 16:32:26
i*g*e*o*d*r*n*i*g.com F 2026-07-23 14:59:16
a*o*-*r*j*c*s.com F 2026-07-23 14:12:05
v*v*n*a.com (WP 7.0.2) D 2026-07-23 13:59:34
s*e*h*n*-*r*a*i.com 👤 A 2026-07-23 13:52:11
p*x*m*s*u*.eu (WP 5.4.19) ⚠️ F 2026-07-23 13:47:18
r*o*r*s*u*s.com (WP 7.0.2) F 2026-07-23 12:41:58
s*e*l*r*h*f*s*i*p*n*.com (WP 5.9.13) ⚠️ 👤 F 2026-07-23 09:48:22
r*o*-*l*s.com F 2026-07-23 09:42:53
l*x*u*s*l*r.com (WP 7.0.2) 📡 👤 F 2026-07-23 09:39:27
r*n*a*.com F 2026-07-23 09:05:20
d*r*c*c*s*l*c.com (WP 7.0.2) F 2026-07-23 08:59:34
a*r*n*a*u*a*z*s.com (WP 7.0.2) F 2026-07-23 06:53:56
c*i*n*i*t*t*a*.com 👤 F 2026-07-23 06:41:57
a*q*i*e*a*.com 👤 F 2026-07-23 05:47:37
s*e*l*a*i*n*u*l*i*g*.com (WP 7.0.2) 👤 F 2026-07-23 03:32:20
v*v*d*o*t*n*.c*.jp A 2026-07-22 21:48:38
d*m*n*i*n*e*o*s*n*g*l.com (WP 5.6.17) ⚠️ F 2026-07-22 21:47:52
r*l*e*t*c*n*k.com (WP 7.0.2) D 2026-07-22 21:34:02
a*r*o*d*t*o*i*g*i*r*l*a*.gi (WP 7.0) F 2026-07-22 21:23:30
a*s*e*l*n*.nl F 2026-07-22 13:30:21
n*p*m*t*l*a*d.nl F 2026-07-22 13:30:21
d*z*i*t*r*a*i*n*l*i*i*g.org 👤 C 2026-07-22 13:20:58
s*a*t*u*.com (WP 6.5.2) F 2026-07-22 10:05:04
o*a*e*h*-*a*o.com 👤 F 2026-07-22 09:55:33
k*s.de (WP 6.8.6) 👤 F 2026-07-22 09:54:51
a*l*s*w*n*e*.de (WP 5.9.13) ⚠️ F 2026-07-22 09:50:32
v*t*-*i*.com (WP 7.0.2) F 2026-07-22 08:03:03
f*r*e*w*h*u*g*k*r*i*.com (WP 7.0.2) F 2026-07-22 06:26:13
s*a*-*x.com 👤 F 2026-07-22 00:59:40
m*u*i*.com (WP 7.0.2) F 2026-07-22 00:28:12
w*m*x.nl F 2026-07-21 23:59:39
b*m*6*.de F 2026-07-21 23:47:49
r*i*b*r*f*u*d*t*o*.org (WP 7.0.2) 👤 F 2026-07-21 21:59:55
m*t*o*e*v*r*e*o*.com (WP 6.9.4) D 2026-07-21 19:41:45
m*t*o*e*v*r*e*o.com (WP 6.9.4) D 2026-07-21 19:41:45
r*o*t*p*b*d*c*u*g*n.de F 2026-07-21 19:15:20
c*e*-*a*.com (WP 7.0.2) F 2026-07-21 18:26:35
u*l*f*i*g*r*m*t*o*s.com (WP 7.0.2) 👤 D 2026-07-21 15:35:39
g*o*e*r*h*l*o*i*g*o*.com (WP 7.0.2) 👤 F 2026-07-21 14:35:19
o*o*l*a*o*j*y*r*a*c*n*r*a*.com (WP 7.0.2) 👤 F 2026-07-21 13:54:43
f*m*x*n*r*u*h*r*i.de 👤 F 2026-07-21 12:50:56
u*b*r*a*s*r*a*s*g*.com (WP 6.9.5) 👤 F 2026-07-21 12:43:43
w*e*.app (WP 5.8.13) ⚠️ 👤 F 2026-07-21 12:34:08
s*t*r*5.com (WP 7.0.2) 👤 F 2026-07-21 08:07:48
o*i*i*a*n*l*d*.com (WP 7.0.2) F 2026-07-21 07:28:14
h*m*t*w*p*s*r*e*.com (WP 7.0.2) D 2026-07-21 07:08:04
g*y*n*w*r*s.com (WP 7.0.2) 👤 F 2026-07-21 04:41:07
s*m*o*f*c*.com F 2026-07-21 04:01:32
h*m*o*n*r*m*r*g*g*.com (WP 7.0.2) F 2026-07-21 01:18:59
h*m*l*a*s*o*a*.com (WP 7.0.2) F 2026-07-20 23:04:39
c*-*e*s*u*i*.de F 2026-07-20 22:52:47
t*m*w*x.nl (WP 7.0) F 2026-07-20 22:05:02
a*u*t*k*c.com (WP 7.0.2) 👤 F 2026-07-20 18:04:19
r*c*e*s*j*.com (WP 6.5.8) 👤 F 2026-07-20 17:11:53
h*m*-*i*i*.com 👤 F 2026-07-20 15:22:57
f*s*f*e*c*r*o.com (WP 6.6.2) F 2026-07-20 13:53:12
p*s*i*g*f*k*y*m*.com (WP 5.3.21) ⚠️ 👤 F 2026-07-20 13:17:51
u*i*e*b*r*o*e*.com 👤 F 2026-07-20 12:19:38
a*u*d*c*.eco F 2026-07-20 05:16:29
k*c*a*n*.com 👤 D 2026-07-20 05:15:41
a*p*o*e*m*v*r*.com F 2026-07-20 04:00:50
a*p*o*e*-*o*e*s.com F 2026-07-20 03:57:19
p*y*o*l.pet (WP 6.5.8) F 2026-07-20 02:46:01
p*y*o*l.vet F 2026-07-20 02:46:01
p*y*o*l.dentist F 2026-07-20 02:46:01
t*t*t*x.com C 2026-07-20 02:44:22
e*u*l*c*s*.nl (WP 7.0.2) F 2026-07-20 02:00:02
m*m*r*e*t*d*g*t*l*o.com F 2026-07-19 23:41:49
m*m*r*w*s*.com F 2026-07-19 23:37:08
r*a*s*a*i*i*o*.com (WP 7.0.2) F 2026-07-19 23:26:21
o*e*s*l*t*o*s*a.com (WP 7.0.2) F 2026-07-19 23:11:40
c*t*f*y*t.se (WP 7.0.2) F 2026-07-19 23:01:23
b*o*a*n*p*z*s*a*.com (WP 6.9.4) F 2026-07-19 20:05:34
m*l*r*o*i*g.com (WP 7.0.1) 👤 F 2026-07-19 18:30:10
h*c*u*o*a*.com (WP 7.0.2) 💀 👤 F 2026-07-19 18:23:21
r*c*o*e*o*t*a*e.com (WP 7.0.2) F 2026-07-19 18:14:05
b*o*m*e*n*w*.com D 2026-07-19 18:01:01
k*n*a*p*.eu 👤 B 2026-07-19 13:55:12
s*i*e*e*t*e*h*e*.com 👤 F 2026-07-19 12:28:48

Top 50 Plugins

Plugin Count
elementor 1,785,847
contact-form-7 1,772,075
elementor-pro 1,058,206
woocommerce 819,663
revslider 614,858
jetpack 461,360
js_composer 424,915
wp-rocket 342,026
essential-addons-for-elementor-lite 267,974
complianz-gdpr 261,395
gravityforms 257,973
google-site-kit 232,221
cookie-law-info 231,691
instagram-feed 227,553
sitepress-multilingual-cms 212,809
header-footer-elementor 209,698
google-analytics-for-wordpress 208,295
bluehost-wordpress-plugin 193,390
elementskit-lite 183,003
gutenberg 167,376
cookie-notice 151,298
litespeed-cache 142,469
gtranslate 126,837
wpforms-lite 126,466
gutenberg-core 125,106
the-events-calendar 123,672
astra-sites 115,666
popup-maker 111,155
woocommerce-payments 111,041
tablepress 102,525
honeypot 98,359
astra-addon 94,878
wp-smushit 91,971
duracelltomi-google-tag-manager 91,271
all-in-one-seo-pack 90,532
layerslider 90,499
coblocks 89,949
bb-plugin 86,645
akismet 85,550
premium-addons-for-elementor 85,528
cleantalk-spam-protect 83,602
ml-slider 83,040
mailchimp-for-wp 82,844
megamenu 81,141
woocommerce-gateway-stripe 80,378
fusion-builder 77,973
jet-engine 77,627
ewww-image-optimizer 77,445
wp-pagenavi 77,189
smart-slider-3 77,103

Top 50 Themes

Theme Count
hello-elementor 624,573
Divi 502,139
astra 419,981
flatsome 136,719
Avada 122,542
generatepress 115,960
pub 87,114
oceanwp 81,728
kadence 79,668
enfold 69,856
salient 65,816
twentyseventeen 54,842
betheme 52,745
twentytwentyfour 52,738
bb-theme 52,714
blocksy 51,462
cocoon-master 50,326
dt-the7 45,859
twentytwentyfive 45,014
h4 43,377
woodmart 40,659
neve 38,644
Avada-Child-Theme 37,228
gox 36,238
bridge 31,861
twentytwentyone 30,656
lightning 30,419
twentytwenty 29,062
swell 28,591
bricks 26,550
Impreza 26,322
Newspaper 24,396
twentytwentythree 22,399
epik-redesign 19,325
twentytwentytwo 19,047
uncode 18,738
twentysixteen 17,767
pro 17,602
sydney 16,729
storefront 16,509
Total 14,598
hello-theme-child-master 14,067
factory-templates-4 13,738
extendable 13,494
themify-ultra 13,089
hestia 12,738
yootheme 12,697
yith-wonder 12,611
porto 12,104
jupiter 11,710