CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Change color based on selectionHello @rotertal
Thank you so much for using our plugin.
You need only to edit the line of code in the equation:
var selected = getField(fieldname51|n).val();as follows:
var selected = fieldname51;And that’s all.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Google Rich ResultsHello @pexel
We previously discussed that this issue is likely related to the optimization plugins active on your website. We even suggested that if you prefer not to modify your optimization plugin settings, you could use the iframe attribute in the form shortcode as an alternative.
Additionally, please note that our plugin includes an option found under “Calculated Fields Form > Troubleshoots Area & General Settings” titled “Render only the visible forms to improve page performance.” When this option is enabled, the plugin checks whether the form’s container is visible to the user. If the container is not visible, the form generation is paused until it becomes visible, helping to prioritize the page loading process.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Google Rich ResultsHello @pexel
If you need to store a copy of the rendered form on the server side, you will need the commercial plugin distribution.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Google Rich ResultsHello @pexel
You are using the free plugin distribution. It does generate the forms on the client side on demand and does not include the “Activate Forms Cache” option. The ” Activate Forms Cache” option stores a rendered copy of the form in the database and includes it directly in the DOM structure of your page.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Side by side columnsHello @ycsuk
Please note you can nest DIV fields, you can insert a DIV field and select the 2 Columns option (I’ll call it field “A” for easier explanation), then insert two other DIV fields (“B” and “C”) into the “A” for the left and right columns, respectively, and configured to distribute the contained fields into only one column each of them. Finally, insert the fields you want to display on the left in the “B” div field, and the fields you want to display on the right in the “C” div field.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Side by side columnsHello @ycsuk
Thank you so much for using our plugin. The solution is even simpler. You need only to insert a DIV field and select the 2 columns option in it settings. Please watch the following video:
https://youtu.be/NSac2cAN8RE?list=PLY-AOoHciOKgZQsqWfkQlHJ21sm3qPF9X
If you prefer assigning class names enter
column2in all your fields.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] lock a fieldHello @sakis11111
In that case, you need to incorporate conditional statements in your equations. These conditions should check which checkbox fields designated for locking the inputs have been selected, and then perform the corresponding mathematical operations.
If you require personalized project implementation, please feel free to contact us via the plugin website. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] lock a fieldHello @sakis11111
In this case, you can emulate the process with a checkbox to lock the file calculation manually (do not tick the option: “If value entered manually, no evaluate equation”).
For example, assuming the field is the fieldname3, whose equation is
fieldname1+fieldname2(or any other equation). Also, you have inserted the checkbox field fieldname4 with the text “lock the field”. Finally, if you want to avoid the dynamic calculation if the checkbox is ticked, please edit the equation (for this hypothetical case) as follows:
(function(){
if(fieldname4) return __ME__;
return fieldname1+fieldname2;
})()If the checkbox is ticked, the previous equation will return the own field’s value, or the mathematical operation result otherwise.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] lock a fieldHello @sakis11111
If you have four calculated fields configured as editable (with the read-only option unticked) and you wish for one of them to no longer be recalculated once the user manually enters a value, simply tick the “If value entered manually, no evaluate equation” checkbox in its settings. This configuration allows all fields to remain editable and calculated simultaneously. However, for the field where you have selected this option, its value will continue to be calculated until the user enters a manual value, after which it will not be recalculated.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Answer fields on the imageHello @needfeed
Thank you so much for using our plugin. You can enter the date manually as well, but with the correct date format:
https://resources.developers4web.com/cff/tmp/2025/04/28/video_o.mp4
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Problem with manually entered valueHello @massimo1971
No, the problem would not affect other users. Your router cached a copy of your pages prior to your change in the form settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Problem with manually entered valueHello @massimo1971
This appears to be a cache issue on your computer or network. If your router’s cache is the culprit, try accessing your website through a VPN to confirm.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Problem with manually entered valueHello @massimo1971
I guess the issue is related to your browser’s cache. I did the following test: I opened your form and video, side by side, to follow your steps. Please watch the following video:
https://resources.developers4web.com/cff/tmp/2025/04/27/video-test_o.mp4
As you can see everything has worked as should.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field displaying result before inputHello @ohtusabes
Yes, that’s possible, you can use an “if” conditional statement in the equation to evaluate the mathematical operations if your conditions are satisfied.
E.g.
(function(){
if( AND(fieldname1|r !== '', fieldname2|r !== '') ) return SUM(fieldname1,fieldname2);
return '';
})()In cases as simple as the previous example, you can use the “IF” operation instead of the function structure with “if” conditional statements:
IF( AND(fieldname1|r !== '', fieldname2|r !== ''), SUM(fieldname1,fieldname2), '')Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Problem with manually entered valueHello @massimo1971
I checked your form and it is working fine. Please watch the video by visiting the following link:
https://resources.developers4web.com/cff/tmp/2025/04/27/video-maths_o.mp4
Best regards.