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

Plugin: calculated-fields-form (Used by 970 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
w*t*h*i*e*u*d*.com βœ… β€” 2025-11-11 10:16:08
w*r*h*u*e*l*e*r*n*.com βœ… β€” 2025-11-11 10:06:57
w*l*i*g*y*e*l*p*e.com βœ… β€” 2025-11-11 09:57:01
w*l*s*n*r*e.com βœ… β€” 2025-11-11 09:55:38
v*s*a*p.com βœ… β€” 2025-11-11 09:38:56
v*e*a*g*.com βœ… β€” 2025-11-11 09:18:15
v*v*g*o*a*p*o*u*t*.com βœ… β€” 2025-11-11 09:16:33
v*t*y*a.com βœ… β€” 2025-11-11 09:10:28
v*s*t*3*0*r*.com βœ… β€” 2025-11-11 09:02:04
v*s*e*s*h.com βœ… β€” 2025-11-11 08:57:35
v*p*u*d*a*s*n*.com βœ… β€” 2025-11-11 08:48:02
v*n*a*t*a*c*i.com βœ… β€” 2025-11-11 08:41:49
v*n*o*a*a.com βœ… β€” 2025-11-11 08:41:04
v*k*m*x*o*t.com βœ… β€” 2025-11-11 08:30:58
v*e*i*-*h*t.com βœ… β€” 2025-11-11 08:27:36
v*b*a*t*i*e*r*d*t.com βœ… β€” 2025-11-11 08:15:35
v*a*g*v*c*n*e*a*a*r*a.com βœ… β€” 2025-11-11 08:11:57
v*s*o*i*i*a*m*l*a.com βœ… β€” 2025-11-11 08:10:58
v*v*n*a.com βœ… β€” 2025-11-11 08:08:51
v*r*r*u*h*r*c*n*r*4.com βœ… β€” 2025-11-11 07:55:20
v*g*t*r*a*c*l*u*a*o*.com βœ… β€” 2025-11-11 07:43:08
v*g*n*a*c*l*t*r.com βœ… β€” 2025-11-11 07:41:13
v*o*p*n*-*g.com βœ… β€” 2025-11-11 07:37:10
v*t*n*g*o*p.com βœ… β€” 2025-11-11 07:33:19
v*p*p*o*r*n*h*s*.com βœ… β€” 2025-11-11 07:27:58
v*n*o*o*.com βœ… β€” 2025-11-11 07:23:23
v*n*h*y*n*a*g*h*t.com βœ… β€” 2025-11-11 07:20:36
v*c*y*a*z.com βœ… β€” 2025-11-11 07:05:43
v*b*g.com βœ… β€” 2025-11-11 07:04:13
u*i*a*e.com βœ… β€” 2025-11-11 07:02:08
u*s*a*e*.com βœ… β€” 2025-11-11 06:53:17
u*s*m*l*t*o*.com βœ… β€” 2025-11-11 06:52:55
u*l*a*s*o*t*a*e.com βœ… β€” 2025-11-11 06:51:22
u*a*i*g*i*e.com βœ… β€” 2025-11-11 06:41:30
u*b*m*.com βœ… β€” 2025-11-11 06:35:55
u*u*o*t.com βœ… β€” 2025-11-11 06:31:01
t*i*k*p*o*u*p*r*.com βœ… β€” 2025-11-11 01:16:03
t*e*i*l*s*t*a*w*o*.com βœ… β€” 2025-11-11 01:03:06
t*e*i*e*s*s*e*.com βœ… β€” 2025-11-11 01:02:41
t*e*a*c*l*u*a*o*.com βœ… β€” 2025-11-11 01:01:34
t*e*a*i*o*k*n*.com βœ… β€” 2025-11-11 00:53:16
t*e*m*r*v*l*e*h*p.com βœ… β€” 2025-11-11 00:44:02
t*e*m*o*r*e*s.com βœ… β€” 2025-11-11 00:33:50
t*e*e*i*w*e*e*a*o*.com βœ… β€” 2025-11-11 00:31:59
t*e*a*t*y*a*y.com βœ… β€” 2025-11-11 00:15:51
t*e*b*e*v*n*m*m.com βœ… β€” 2025-11-11 00:09:58
t*e*u*r*y*r*u*h*r*e*.com βœ… β€” 2025-11-11 00:04:30
t*e*r*i*s*m*l*i*n.com βœ… β€” 2025-11-10 23:40:32
t*e*e*d*n*g*i*e.com βœ… β€” 2025-11-10 23:14:43
t*e*a*l*y*n*u*h*n*n.com βœ… β€” 2025-11-10 22:31:04
t*x*t*f*i*.com βœ… β€” 2025-11-10 22:02:51
s*a*g*r*s*a*t*n.com βœ… β€” 2025-11-10 13:04:11
s*s*r*d*t.com βœ… β€” 2025-11-10 12:52:58
s*p*n*c*l*b*a*e*b.com βœ… β€” 2025-11-10 12:49:29
s*n*r*a*i*g*k*.com βœ… β€” 2025-11-10 12:41:24
s*o*s*i*j*p*n.com βœ… β€” 2025-11-10 11:49:22
s*o*o*o*r*i*.com βœ… β€” 2025-11-10 11:41:43
s*i*e*g*r*g*t*s.com βœ… β€” 2025-11-10 11:34:57
s*i*p*r*i*l*.com βœ… β€” 2025-11-10 11:33:19
s*i*y*o*k*a*b*e*l*a*i*g.com βœ… β€” 2025-11-10 11:32:09
s*i*a*o*4.com βœ… β€” 2025-11-10 11:25:31
s*e*l*.com βœ… β€” 2025-11-10 11:18:00
s*e*p*a*t*r*.com βœ… β€” 2025-11-10 11:12:19
s*a*i*g*m*.com βœ… β€” 2025-11-10 11:03:54
s*a*e*o*n*c*l*n*a*.com βœ… β€” 2025-11-10 11:03:03
s*a*e*a*s*o*.com βœ… β€” 2025-11-10 11:02:38
s*c*t*.com βœ… β€” 2025-11-10 10:44:35
s*r*e*l*c*.com βœ… β€” 2025-11-10 10:23:40
s*n*l*g.com βœ… β€” 2025-11-10 10:07:30
s*l*y*u*h*m*f*r*n*p*r*e*t.com βœ… β€” 2025-11-10 10:00:42
s*l*m*m*n*y.com βœ… β€” 2025-11-10 09:59:03
s*l*h*m*t*d*y.com βœ… β€” 2025-11-10 09:58:10
s*l*e*h*l*e*.com βœ… β€” 2025-11-10 09:57:41
s*l*a*o*e*o*o*e*e*c*n*.com βœ… β€” 2025-11-10 09:57:20
s*l*c*a*r*c*g*o*p.com βœ… β€” 2025-11-10 09:53:00
s*g*o*d*.com βœ… β€” 2025-11-10 09:45:33
s*c*r*c*r*o*r*n*p*r*.com βœ… β€” 2025-11-10 09:35:57
s*a*c*s*l*t*o*s*t*.com βœ… β€” 2025-11-10 09:25:24
s*a*i*h*d*t.com βœ… β€” 2025-11-10 09:21:38
s*y*h*l*e*.com βœ… β€” 2025-11-10 09:14:18
s*u*t*e*u*t*o*i*e*a*.com βœ… β€” 2025-11-10 09:13:56
s*o*t*a*n*i*m*t*r*.com βœ… β€” 2025-11-10 09:05:19
s*m*c*n*r*t*.com βœ… β€” 2025-11-10 09:00:38
s*h*o*p*o*e*t*m*t*e*s.com βœ… β€” 2025-11-10 08:54:05
s*h*a*-*d*i*s*u*o.com βœ… β€” 2025-11-10 08:47:12
s*a*e*p*l*s.com βœ… β€” 2025-11-10 08:41:51
s*s*i*p*r*d.com βœ… β€” 2025-11-10 08:39:39
s*t*s*i*a*-*l*g.com βœ… β€” 2025-11-10 08:21:28
s*r*l*g*s*i*s.com βœ… β€” 2025-11-10 08:15:11
s*r*s*d*m*e*.com βœ… β€” 2025-11-10 08:14:30
s*r*-*r*n*e*.com βœ… β€” 2025-11-10 08:14:10
s*r*j*v*c*m*a*y.com βœ… β€” 2025-11-10 08:09:42
s*r*h*o*i*t*a*.com βœ… β€” 2025-11-10 08:08:29
s*n*a*u*o*i*t*c*.com βœ… β€” 2025-11-10 07:40:59
s*m*o*d*n.com βœ… β€” 2025-11-10 07:37:14
s*m*e*f*e*g*t.com βœ… β€” 2025-11-10 07:36:10
s*m*l*e*s*n*.com βœ… β€” 2025-11-10 07:35:50
s*m*t*a*e*i*i*e*a*y.com βœ… β€” 2025-11-10 07:35:08
s*l*r*p*r*e*t*g*c*l*u*a*o*.com βœ… β€” 2025-11-10 07:14:22
s*l*i*e*a*t*l*x*m*o*r*.com βœ… β€” 2025-11-10 07:13:38

Top 50 Plugins

Plugin Count
elementor 2,789,135
contact-form-7 2,471,615
elementor-pro 1,559,906
woocommerce 1,315,312
revslider 932,453
js_composer 602,812
jetpack 498,378
wp-rocket 437,073
essential-addons-for-elementor-lite 418,875
header-footer-elementor 365,890
gutenberg-core 355,451
elementskit-lite 343,189
instagram-feed 315,876
google-analytics-for-wordpress 314,854
gravityforms 305,971
google-site-kit 303,591
complianz-gdpr 296,586
cookie-law-info 294,850
wpforms-lite 260,135
sitepress-multilingual-cms 255,720
astra-sites 253,377
bluehost-wordpress-plugin 242,274
litespeed-cache 226,815
gtranslate 184,993
coblocks 178,806
cookie-notice 171,144
gutenberg 162,513
the-events-calendar 149,844
popup-maker 140,867
premium-addons-for-elementor 136,981
astra-addon 135,546
bb-plugin 134,923
mailchimp-for-wp 133,451
LayerSlider 129,828
wp-smushit 128,437
custom-fonts 123,775
creame-whatsapp-me 121,564
tablepress 121,556
pro-elements 119,362
click-to-chat-for-whatsapp 116,841
woocommerce-gateway-stripe 113,321
duracelltomi-google-tag-manager 112,967
cleantalk-spam-protect 109,884
smart-slider-3 107,857
akismet 106,740
pixelyoursite 105,870
megamenu 104,344
fusion-builder 104,001
royal-elementor-addons 103,865
honeypot 103,137

Top 50 Themes

Theme Count
hello-elementor 888,661
astra 746,069
Divi 727,522
pub 236,334
generatepress 167,067
flatsome 166,519
Avada 156,035
h4 148,044
oceanwp 122,214
kadence 108,202
enfold 91,516
salient 88,673
bb-theme 86,870
twentytwentyfour 83,839
blocksy 82,353
twentytwentyfive 81,402
cocoon-master 77,362
betheme 73,265
twentyseventeen 70,438
woodmart 62,594
dt-the7 59,851
neve 52,658
twentytwentyone 45,561
bridge 44,636
swell 41,293
Avada-Child-Theme 39,626
twentytwenty 38,999
lightning 38,469
twentytwentythree 38,077
gox 37,423
bricks 31,646
Impreza 31,532
Newspaper 29,719
twentytwentytwo 29,181
epik-redesign 24,539
extendable 24,013
storefront 23,985
pro 23,872
uncode 23,212
yith-wonder 23,178
twentysixteen 22,756
sydney 21,864
themify-ultra 21,493
twentyfifteen 19,880
Total 19,621
porto 18,181
hestia 17,380
thrive-theme 16,579
yootheme 16,042
jupiter 15,894