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
b*l*o*w*r*a*g*e*.at (WP 7.0) F 2026-06-09 19:15:53
o*s*k*d*w*n*a*o*e*t*y.c*.uk (WP 6.9.4) F 2026-06-09 17:10:19
f*.e*p*r*s*l*c*r*n*c.com (WP 6.5.8) F 2026-06-09 13:10:50
m*s*e*b*x.rent (WP 6.8.5) F 2026-06-08 22:15:00
n*p*r*s*h*o*.ru (WP 7.0) F 2026-06-08 22:06:24
c*a*s*e*t*n.dk (WP 7.0) F 2026-06-08 07:12:10
o*s*r*i*e*a*h.com (WP 7.0) F 2026-06-08 05:15:55
t*r*n*o*-*l*w*r*.ru F 2026-06-07 08:51:36
b*g*k*f*n*r*i*i*g.com D 2026-06-07 07:36:52
b*g*i*e*u*d*a*s*n*.com D 2026-06-07 05:40:45
b*g*b*.com F 2026-06-07 04:56:50
b*d*e*h*s*t.dk F 2026-06-06 18:20:51
a*t*o*f*c*2*.ru (WP 6.7.5) F 2026-06-06 13:58:03
m*h*o*e*o*n*.com (WP 6.9.4) F 2026-06-06 06:30:51
b*b*e*c*a*t*r*c*s*i*g.com (WP 7.0) 🔓 F 2026-06-06 04:22:16
t*e*i*l*s*t*a*w*o*.com (WP 7.0) F 2026-06-06 01:22:23
a*u*a*l*d*s*a.com (WP 7.0) F 2026-06-06 00:02:30
f*o*t*a*g*h*r*s.com (WP 7.0) D 2026-06-05 19:46:25
f*o*t*a*g*h*r*e*.com (WP 7.0) D 2026-06-05 19:46:25
j*i*u*i*e*s*r*v*2*2.com (WP 6.9.4) F 2026-06-05 11:50:40
f*i*n*l*f*l.com (WP 5.8.13) ⚠️ F 2026-06-05 10:23:16
m*n*i*-*e*i*a*.com (WP 5.9) ⚠️ F 2026-06-04 03:16:47
f*e*h*l*.com D 2026-06-04 02:45:06
c*r*i*e*a.ch (WP 7.0) F 2026-06-03 22:01:14
m*l*c*e*k*a*d*n*g*a*e*.com (WP 7.0) F 2026-06-03 21:04:02
i*-*a*h*.com F 2026-06-03 18:51:12
i*i*e*o*e.com (WP 7.0) F 2026-06-03 15:54:58
a*o*a*s*f*r*j*l*a*.com (WP 6.7.5) D 2026-06-03 15:39:33
f*e*k*e*m*o*e.com D 2026-06-03 12:54:39
a*i*t*r*i*r*.com F 2026-06-03 11:47:55
t*e*a*t*y*a*y.com D 2026-06-03 10:34:11
m*s*e*s*a*l*s.com (WP 6.9.4) F 2026-06-03 07:10:39
m*s*k*n*a.com (WP 7.0) F 2026-06-03 05:44:14
t*e*b*e*v*n*m*m.com (WP 7.0) F 2026-06-03 03:38:12
i*h*a*h*c*2*e*t*a*.com (WP 5.9.13) ⚠️ F 2026-06-03 02:17:38
m*d*o*o*s*l*a*i*g.com D 2026-06-02 23:27:35
p*g*t*k*n*.com (WP 6.9.4) F 2026-06-02 22:39:47
p*g*e*e*t*o*i*s.com (WP 7.0) F 2026-06-02 22:26:51
t*e*u*r*y*r*u*h*r*e*.com F 2026-06-02 21:41:14
c*s*l*e*o*m*l*i*a*g*.com (WP 7.0) F 2026-06-02 20:13:26
c*s*p*y*a*g*.com F 2026-06-02 19:42:34
a*t*l*a*e*p*r*a*v*s*r.com (WP 6.9.4) F 2026-06-02 18:10:52
c*n*e*t*u*i*s.org F 2026-06-02 17:35:34
i*e*i*c*i*i*.com (WP 7.0) F 2026-06-02 15:53:46
p*r*u*s*e*r*a*d*.com (WP 7.0) F 2026-06-02 09:49:20
s*a*a*o*o*k*.pl (WP 5.3.21) ⚠️ F 2026-06-02 09:04:38
j*i*u*i*e*p*r*n*r*.com F 2026-06-02 06:55:32
l*n*h*o*e*v*c*t*o*s.com F 2026-06-02 05:19:52
f*r*i*y*e*d*n*.com (WP 6.5.8) F 2026-06-02 04:21:09
c*r*e*r*d*o*r*.com B 2026-06-02 00:50:43
s*l*i*e*a*t*l*x*m*o*r*.com F 2026-06-01 21:39:41
l*n*o*r*m*v*l*e*v*c*.com (WP 7.0) F 2026-06-01 21:03:29
k*e*b*7*.ch F 2026-06-01 17:55:06
u*u*o*t.com (WP 7.0) F 2026-06-01 17:43:02
h*d*a*l*c*a*a*i*e.com F 2026-06-01 16:32:28
m*r*g*g*-*.com C 2026-06-01 16:30:06
m*r*g*g*-*i*.com F 2026-06-01 16:26:11
c*r*l*n*w*s*e*o*p*c*i*n.com F 2026-06-01 12:57:06
d*b*e*r*i*m*n*.com F 2026-06-01 11:57:16
c*r*l*n*f*n*r*i*e*s.com D 2026-06-01 11:55:35
e*r*b*x.ru (WP 7.0) F 2026-06-01 11:12:53
e*r*n*i*a.de (WP 7.0) F 2026-06-01 10:57:16
h*u*v*s*.com (WP 6.0.9) ⚠️ F 2026-06-01 10:24:01
s*h*p*r*a*h*.com (WP 7.0) F 2026-06-01 03:32:05
h*d*o*.bg (WP 6.9.4) A 2026-05-31 23:29:28
a*i*g*a*i*s.info (WP 7.0) F 2026-05-31 22:45:00
a*s*n*e*a*t*r.net (WP 7.0) F 2026-05-31 21:27:55
c*r*o*u*t*s*r*i*e.com (WP 5.5.18) ⚠️ F 2026-05-31 20:58:52
p*a*e*a*l*u*.es F 2026-05-31 19:23:26
l*t*n*i*i*r*.com (WP 6.5.5) F 2026-05-31 18:48:49
d*f*t*.com F 2026-05-31 17:08:16
f*r*e*f*e*.de 🔓 F 2026-05-31 14:22:43
g*a*-*i*-*l.dk (WP 7.0) F 2026-05-31 13:16:25
n*w*i*h*n*e*t.com C 2026-05-31 10:12:45
d*u*h*u*d*e*u*d*a*s*n*.com D 2026-05-31 09:16:04
m*i*-*i*r*f*n*n*i*r*r.de F 2026-05-31 07:18:05
j*i*u*i*e*r*a*e*t*t*n*r*h*e*s*y.com (WP 7.0) F 2026-05-31 06:07:24
k*r*-*c*.de (WP 6.9.4) F 2026-05-31 03:42:36
m*n*y*l*s*i*a*c*a*s*r*i*e.com F 2026-05-31 03:35:57
n*w*o*e*k*s*i*m*e*l.com D 2026-05-31 02:28:31
c*p*u*e*p*d.com 🔓 📂 F 2026-05-31 01:51:51
k*l*e*r*u*.com (WP 6.1.10) ⚠️ F 2026-05-31 00:50:22
t*c*l*u*a*o*.com (WP 7.0) F 2026-05-30 20:43:55
n*r*v*n*l*n*e*e*.nl F 2026-05-30 16:18:33
s*o*g*a*n.c*.uk F 2026-05-30 14:28:48
h*e*n*r*a*t*n*.org (WP 6.9.4) F 2026-05-30 12:48:45
r*c*u*u*h.com (WP 7.0) F 2026-05-30 12:38:42
p*e*i*i*n*a*t*y.com D 2026-05-30 12:22:29
c*n*t*r*g*i*i*a.com (WP 6.9.4) F 2026-05-30 10:50:17
v*s*t*3*0*r*.com (WP 6.9.4) F 2026-05-30 09:45:28
1*3*z*n*i*e.com F 2026-05-30 09:33:11
w*.e*o*v*v*c*t*o*r*n*a*.com (WP 6.2.2) ⚠️ F 2026-05-30 09:15:10
d*m*e*p*y*a*.com (WP 6.9.4) D 2026-05-30 07:40:19
v*s*e*s*h.com F 2026-05-30 03:03:31
p*a*s*.com F 2026-05-30 02:34:46
k*e*-*t*t*.com F 2026-05-30 00:52:35
a*t*k*s*e*a*s*u*f*.net F 2026-05-29 23:30:01
f*a*h*a*h*y.com (WP 7.0) F 2026-05-29 19:15:07
g*e*t*r*i*t*b*r*h*e*t*e*e*t*o*p*n*.com (WP 7.0) C 2026-05-29 16:11:06
m*d*l*e.club F 2026-05-29 14:01:49

Top 50 Plugins

Plugin Count
elementor 1,791,424
contact-form-7 1,760,626
elementor-pro 1,044,086
woocommerce 812,732
revslider 614,749
jetpack 465,283
js_composer 430,121
wp-rocket 332,239
essential-addons-for-elementor-lite 292,340
gravityforms 266,140
complianz-gdpr 254,821
cookie-law-info 229,734
instagram-feed 226,991
google-site-kit 220,852
sitepress-multilingual-cms 220,076
google-analytics-for-wordpress 213,065
header-footer-elementor 209,159
elementskit-lite 206,041
bluehost-wordpress-plugin 190,530
gutenberg 161,755
gutenberg-core 158,667
cookie-notice 150,264
the-events-calendar 130,624
litespeed-cache 129,748
wpforms-lite 129,031
gtranslate 127,187
astra-sites 119,169
popup-maker 115,471
woocommerce-payments 112,578
tablepress 108,298
coblocks 98,976
honeypot 96,750
astra-addon 94,880
wp-smushit 93,076
duracelltomi-google-tag-manager 93,025
all-in-one-seo-pack 92,831
LayerSlider 91,209
bb-plugin 90,526
premium-addons-for-elementor 86,478
megamenu 86,005
akismet 85,698
cleantalk-spam-protect 83,572
mailchimp-for-wp 83,344
woocommerce-gateway-stripe 82,745
ml-slider 80,500
fusion-builder 79,270
borlabs-cookie 78,867
ewww-image-optimizer 78,674
wp-pagenavi 78,287
formidable 77,735

Top 50 Themes

Theme Count
hello-elementor 612,184
Divi 508,307
astra 421,706
flatsome 131,706
Avada 123,773
generatepress 119,131
pub 109,404
oceanwp 82,958
kadence 77,942
enfold 71,450
salient 66,403
twentytwentyfour 58,600
h4 56,093
twentyseventeen 55,850
bb-theme 55,096
cocoon-master 52,023
betheme 51,532
blocksy 50,325
dt-the7 45,908
twentytwentyfive 43,515
neve 39,098
Avada-Child-Theme 37,424
gox 33,337
woodmart 33,115
bridge 32,729
twentytwentyone 31,979
lightning 31,363
twentytwenty 29,877
swell 28,518
Impreza 26,279
bricks 25,886
twentytwentythree 23,929
Newspaper 23,294
sydney 22,579
voxel 22,389
twentytwentytwo 19,910
epik-redesign 19,270
uncode 18,998
kubio 18,624
sinatra 18,438
twentysixteen 18,094
pro 17,801
storefront 17,793
Total 14,650
extendable 14,533
yith-wonder 14,026
hello-theme-child-master 13,265
themify-ultra 12,924
factory-templates-4 12,899
yootheme 12,857