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

Plugin: calculated-fields-form (Used by 692 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
d*z*i*t*r*a*i*n*l*i*i*g.org C 2026-05-26 02:01:15
n*j*m*i*g*n*u*a.p*a*a.eu F 2026-05-26 01:18:58
s*a*t*u*.com (WP 6.5.2) F 2026-05-25 22:57:41
k*s.de (WP 6.8.5) F 2026-05-25 22:45:52
o*a*e*h*-*a*o.com F 2026-05-25 22:44:27
a*l*s*w*n*e*.de (WP 5.9.13) ⚠️ F 2026-05-25 22:42:35
v*t*-*i*.com (WP 7.0) F 2026-05-25 20:58:07
f*r*e*w*h*u*g*k*r*i*.com (WP 7.0) F 2026-05-25 19:27:54
n*e*r*c*n*r.de F 2026-05-25 17:20:51
s*a*-*x.com F 2026-05-25 14:28:12
m*u*i*.com (WP 7.0) F 2026-05-25 13:54:38
w*m*x.nl F 2026-05-25 13:34:04
b*m*6*.de F 2026-05-25 13:21:21
c*p*a*d*r*v*l.w*e*g*n*.com F 2026-05-25 09:56:05
m*t*o*e*v*r*e*o*.com (WP 6.9.4) D 2026-05-25 09:21:36
m*t*o*e*v*r*e*o.com (WP 6.9.4) D 2026-05-25 09:21:36
r*o*t*p*b*d*c*u*g*n.de F 2026-05-25 08:58:33
b*n*y*k*p.com D 2026-05-25 08:22:30
c*e*-*a*.com (WP 7.0) F 2026-05-25 08:06:25
u*l*f*i*g*r*m*t*o*s.com (WP 6.9.4) D 2026-05-25 05:19:12
g*o*e*r*h*l*o*i*g*o*.com (WP 7.0) F 2026-05-25 04:13:04
o*o*l*a*o*j*y*r*a*c*n*r*a*.com (WP 7.0) F 2026-05-25 03:35:03
f*m*x*n*r*u*h*r*i.de F 2026-05-25 02:35:17
u*b*r*a*s*r*a*s*g*.com (WP 6.9.4) F 2026-05-25 02:28:45
w*e*.app (WP 5.8.13) ⚠️ F 2026-05-25 02:20:29
o*i*i*a*n*l*d*.com (WP 6.9.4) F 2026-05-24 21:17:59
h*m*t*w*p*s*r*e*.com (WP 6.9.4) D 2026-05-24 20:57:51
g*y*n*w*r*s.com (WP 7.0) F 2026-05-24 18:35:49
s*m*o*f*c*.com F 2026-05-24 17:58:33
u*.r*s*.com F 2026-05-24 17:26:50
h*m*o*n*r*m*r*g*g*.com (WP 6.9.4) 🔓 F 2026-05-24 15:25:51
g*a*d*a*m.bw (WP 7.0) D 2026-05-24 15:18:18
p*d*l*k.a*r*n*s*r*p.ru F 2026-05-24 15:00:35
g*u*o*6.com (WP 6.9.1) F 2026-05-24 13:38:52
h*m*l*a*s*o*a*.com (WP 6.9.4) F 2026-05-24 13:22:24
c*-*e*s*u*i*.de F 2026-05-24 13:11:00
t*m*w*x.nl (WP 6.9.4) F 2026-05-24 12:25:45
k*a*h*b*o*.nl (WP 6.9.4) F 2026-05-24 08:59:30
a*u*t*k*c.com (WP 7.0) F 2026-05-24 08:39:38
f*s*t*a*k*3*0.com F 2026-05-24 08:03:06
r*c*e*s*j*.com (WP 6.5.8) F 2026-05-24 07:49:05
h*m*-*i*i*.com F 2026-05-24 06:00:37
p*s*i*g*f*k*y*m*.com (WP 5.3.21) ⚠️ F 2026-05-24 03:59:21
u*i*e*b*r*o*e*.com F 2026-05-24 03:06:52
b*o*s*y*e*.de (WP 6.9.4) F 2026-05-24 01:52:05
a*u*d*c*.eco F 2026-05-23 20:43:21
k*c*a*n*.com D 2026-05-23 20:38:53
a*p*o*e*m*v*r*.com F 2026-05-23 19:31:59
a*p*o*e*-*o*e*s.com F 2026-05-23 19:27:02
p*y*o*l.green F 2026-05-23 18:21:49
p*y*o*l.pet (WP 6.5.8) F 2026-05-23 18:21:49
p*y*o*l.vet F 2026-05-23 18:21:49
p*y*o*l.blue D 2026-05-23 18:21:49
p*y*o*l.dentist F 2026-05-23 18:21:49
t*t*t*x.com C 2026-05-23 18:20:44
e*u*l*c*s*.nl (WP 7.0) F 2026-05-23 17:42:13
u*i*d*m*.com (WP 6.1.3) ⚠️ F 2026-05-23 16:41:31
r*a*s*a*i*i*o*.com (WP 7.0) F 2026-05-23 15:11:50
o*e*s*l*t*o*s*a.com (WP 7.0) F 2026-05-23 14:59:11
o*e*j*m*i*a.com (WP 7.0) F 2026-05-23 14:54:31
c*t*f*y*t.se (WP 7.0) F 2026-05-23 14:47:06
b*o*a*n*p*z*s*a*.com (WP 6.9.4) F 2026-05-23 11:57:10
m*l*r*o*i*g.com (WP 7.0) F 2026-05-23 10:23:47
h*c*u*o*a*.com (WP 7.0) 💀 F 2026-05-23 10:14:14
r*c*o*e*o*t*a*e.com (WP 6.9.4) 🔓 F 2026-05-23 10:09:03
b*o*m*e*n*w*.com D 2026-05-23 09:51:17
k*n*a*p*.eu B 2026-05-23 05:24:07
s*i*e*e*t*e*h*e*.com F 2026-05-23 03:56:34
k*m*f*k*y*.com (WP 6.9.4) F 2026-05-23 02:20:30
i*c*d*.k*n*t*.cloud (WP 7.0) D 2026-05-22 23:25:12
t*t*.v*s*t*3*0*r*.com (WP 6.9.4) F 2026-05-22 21:39:33
l*e*.v*s*t*3*0*r*.com (WP 6.9.4) F 2026-05-22 21:39:33
t*t.c*m.au C 2026-05-22 20:11:25
i*a.ir (WP 6.6.5) F 2026-05-22 19:45:24
e*s*s*a*t.sk (WP 6.8.5) F 2026-05-22 18:53:44
d*c*r*h*m*.com (WP 5.0.14) ⚠️ F 2026-05-22 18:15:57
b*i*h*w*r*r*s*a*c*t*e*t*e*t.com (WP 6.9.4) C 2026-05-22 17:32:46
r*s*l*t*n.com F 2026-05-22 17:05:46
r*z*a*6.ru F 2026-05-22 15:56:06
z*m*i*q*a*i*y*o*t*o*.com F 2026-05-22 14:33:46
s*a*b*e*a.cz F 2026-05-22 14:05:59
f*i*-*a*b*t.com (WP 7.0) F 2026-05-22 13:53:05
b*i*f*l*n*.com (WP 7.0) F 2026-05-22 11:40:26
r*j*s*n*i*e.t*l*e*m*t*l*c*.com F 2026-05-22 10:22:04
p*r*e*t*a*.c*.za F 2026-05-22 10:18:20
e*a*t*.i*.ua (WP 6.9.4) F 2026-05-22 08:44:59
s*a*l*a*i*g.com (WP 6.9.4) D 2026-05-22 08:32:39
y*u*o*i*.com (WP 6.9.4) F 2026-05-22 07:36:14
a*y*o*e*o*l*s*.com (WP 6.9) F 2026-05-22 06:50:39
s*r*m*r*e*g*r*m*e*e*2*.de F 2026-05-22 06:20:04
l*c*t*a*t*m*e*e*.de F 2026-05-22 06:20:04
k*o*k*u*e*t*r*a*n*e*t*.com D 2026-05-22 04:51:09
d*m*t*r*a*s*n*.com F 2026-05-21 23:51:47
m*d*e*t*k*r.com (WP 6.9.4) F 2026-05-21 20:11:26
d*a*o*d*r.com D 2026-05-21 18:46:35
o*e*x*e*s*v*m*n*e*o*a.com F 2026-05-21 18:08:10
e*f*n*r*i*i*g*t*h.com D 2026-05-21 17:46:26
a*a*p*o*e.ir F 2026-05-21 17:34:02
h*u*o*-*a*a*.c*.jp (WP 7.0) F 2026-05-21 16:55:35
k*e*n*i*g*a*.com F 2026-05-21 16:21:55

Top 50 Plugins

Plugin Count
elementor 1,796,741
contact-form-7 1,766,546
elementor-pro 1,047,260
woocommerce 815,042
revslider 616,486
jetpack 466,278
js_composer 431,474
wp-rocket 333,316
essential-addons-for-elementor-lite 293,145
gravityforms 266,592
complianz-gdpr 255,931
cookie-law-info 230,628
instagram-feed 227,636
google-site-kit 221,594
sitepress-multilingual-cms 220,708
google-analytics-for-wordpress 213,613
header-footer-elementor 209,754
elementskit-lite 206,554
bluehost-wordpress-plugin 190,677
gutenberg 162,083
gutenberg-core 159,164
cookie-notice 150,869
the-events-calendar 131,142
litespeed-cache 130,431
wpforms-lite 129,343
gtranslate 127,652
astra-sites 119,407
popup-maker 115,819
woocommerce-payments 112,815
tablepress 108,825
coblocks 99,308
honeypot 97,125
astra-addon 95,116
wp-smushit 93,343
duracelltomi-google-tag-manager 93,328
all-in-one-seo-pack 93,096
LayerSlider 91,463
bb-plugin 90,683
premium-addons-for-elementor 86,707
megamenu 86,279
akismet 85,938
cleantalk-spam-protect 83,757
mailchimp-for-wp 83,585
woocommerce-gateway-stripe 82,978
ml-slider 80,826
fusion-builder 79,481
borlabs-cookie 79,231
ewww-image-optimizer 78,903
wp-pagenavi 78,615
formidable 77,926

Top 50 Themes

Theme Count
hello-elementor 614,199
Divi 509,746
astra 422,824
flatsome 132,849
Avada 124,112
generatepress 119,667
pub 109,731
oceanwp 83,251
kadence 78,264
enfold 71,684
salient 66,622
twentytwentyfour 58,741
h4 56,268
twentyseventeen 56,055
bb-theme 55,201
cocoon-master 52,071
betheme 51,693
blocksy 50,524
dt-the7 46,049
twentytwentyfive 43,672
neve 39,246
Avada-Child-Theme 37,532
gox 33,400
woodmart 33,232
bridge 32,813
twentytwentyone 32,058
lightning 31,414
twentytwenty 29,980
swell 28,566
Impreza 26,363
bricks 25,959
twentytwentythree 23,984
Newspaper 23,408
sydney 23,318
voxel 22,439
twentytwentytwo 19,960
epik-redesign 19,270
uncode 19,069
kubio 18,843
sinatra 18,674
twentysixteen 18,163
storefront 17,841
pro 17,833
Total 14,695
extendable 14,576
yith-wonder 14,035
hello-theme-child-master 13,314
themify-ultra 12,964
factory-templates-4 12,913
yootheme 12,910