CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Button and resultsHello @ohtusabes
Please provide the link to the page containing the form, and indicate the fields formatted into columns to check if you have assigned the class name to them.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Button and resultsHello @ohtusabes
If you want to hide the div field by default:
- Select the field in the form.
- Activate the “Advanced Settings” tab in its settings.
- Tick the “Hide field” checkbox. The text in the checkbox indicate what you must do to display this field.
To display the fieldname8 DIV field when you press the “Calculate” button, enter the
SHOWFIELD('fieldname8');through its onclick attribute (in the button settings).Finally, if you want to display the fields in two columns on mobile devices, you can enter the predefined class name
col-xs-6through the “Add CSS Layout Keywords” attributes in those fields you want to display in two columns.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Conflict with cachebusterHello @charlesrodmell
We have released a plugin update (just now) that prevents Cachebuster from affecting our form builder.
Please install the plugin update.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Conflict with cachebusterHello @charlesrodmell
Thank you so much for using our plugin. βcachebusterβ is too intrusive; it takes all JS and CSS URLs, removes their parameters, and adds its own version control.
Our plugin loads some dynamic scripts with an URL like this one:
…/wp-admin/admin.php?page=cp_calculated_fields_form&cp_cff_resources=admin&ver=5.4.0.6
And cachebuster instead of replacing the “ver” parameter only, it removes all of them and transforms the URL as follows:
…/wp-admin/admin.php?=1744841015
So, the URL would no longer be loading the JS code.
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Tolles Plugin, bin begeistertForum: Plugins
In reply to: [Calculated Fields Form] Text before resultHello @ohtusabes
Yes, you have multiple alternatives:
- You can display the field’s label in at the left instead of the top
- You can enter the text as the field’s value prefix.
- Or you can use the calculated field as an auxiliary for calculations, but display the results in another field, like an HTML Content field.
All these alternatives are described in the following video:
https://resources.developers4web.com/cff/tmp/2025/10/22/video-sum_o.mp4Best regards.
- This reply was modified 7 months, 3 weeks ago by CodePeople2.
Forum: Plugins
In reply to: [Calculated Fields Form] Way to delay visibility of submit button?Hello @charlesrodmell
ππππ
Hello @matthiaspabst
It includes the evaluation in a try/catch block. If you have enabled the protection directives, it will use the exact code we provided you from the plugin website.
try {
r = eval(eq);
} catch (err) {
if ( err instanceof EvalError ) r = $.fbuilder['eval'].call(this, eq);
else throw err;
}Could you please provide the link to the page containing the form after you install the plugin’s update?
Best regards.Hello @matthiaspabst
We released a plugin update that includes the modifications to the file we previously provided and additional enhancements.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Checkboxes problemHello @ohtusabes
The plugin tries to extract numbers from fields values to use them in mathematical expressions. If you want to access the field’s raw values, please use the |r modifier.
Please edit the fieldname87 field’s equation modifying the piece of code:
var dx = fieldname89 || '';as follows:
var dx = CONCATENATE(fieldname89|r);Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Cannot save changesHello @vbence
Thank you so much for using our plugin.
The described issue is usually caused by the PHP settings on your server.
PHP includes some directives, like:
post_max_size: Maximum size of POST data that PHP will accept. If the total size of form data exceeds this, $_POST will be empty.
max_input_vars: Maximum number of input variables (e.g., form fields) PHP will process per request (applies to $_POST, $_GET, $_COOKIE).
max_input_time: Maximum time (in seconds) PHP will spend parsing input data (e.g., POST and GET).
memory_limit: Memory limit per script.
If your form size exceeds any of these settings, PHP will ignore the submission.
You can find these values directly through the “Tools > Site Health” menu option, specifically in the “info” tab.
Please note we are not allowed to support any customers in these forums.
For pro or commercial product support please contact us directly on our site. This includes any pre-sales topics as well.
Commercial products are not supported in these forums. We will happily answer this and any other questions you can have on our own site.
Thank you.
Hello @matthiaspabst
I wanted to follow up and see if you received the emails we sent from the plugin website. If you have, please let me know. Thank you!
Hello @matthiaspabst
Please contact us through the plugin website. We will provide you with the code currently in progress to replace the “eval.”
https://cff.dwbooster.com/contact-usBest regards.
Hello @matthiaspabst
In the current plugin version, it is required to evaluate the equations at runtime. However, the plugin escapes the fields’ values before using them in the equations. Note that you enter the equations by referring to the fields directly by their names, but the plugin must replace them and evaluate the equations. We are working on a mechanism to not depend on eval, but the plugin currently uses it safely.
Best regards.