codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Reveal question after previous question is answeredHello @jcollier
Thank you so much for using our plugin. You only should configure dependencies between fields. Please watch the following video tutorial:
Best regards.
Hello @tsinhouseweb
We replied to your email from the plugin website.
Please note we are not allowed to support any customers in these forums.
For pro or commercial product support please get in touch with us directly on our site.
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.
Forum: Reviews
In reply to: [Search in Place] Awesome pluginForum: Plugins
In reply to: [Calculated Fields Form] LOG10Hello @georgiosm
The issue is simple. You are using a dash symbol instead of minus symbol. The correct is:
ROUND(86.010 * LOGAB(fieldname13 - fieldname7, 10) - 70.041 * LOGAB(fieldname6, 10) + 36.76)I removed the extra parenthesis because they are unnecessary.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Display based on calculated valuesHello @jcollier
You have multiple alternatives to implement the described behavior.
I’ll try to describe the process with a hypothetical example.
Assuming you have three calculated fields, fieldname1, fieldname2, and fieldname3.
If fieldname1 has the largest value, you want to display the text:
Answer A. <a href="https://www.yourwebsite.com/page-a">Click Here</a>If fieldname2 has the largest value, you want to display the text:
Answer B. <a href="https://www.yourwebsite.com/page-b">Click Here</a>And the text below if the largest value is associated with the fieldname3:
Answer A. <a href="https://www.yourwebsite.com/page-a">Click Here</a>First, insert an additional calculated field in the form to use as an auxiliary (I’ll assume it is the fieldname4). You can hide it by ticking a checkbox in its settings. And enter the equation:
(function(){
let value = fieldname1;
let result = 'Answer A. <a href="https://www.yourwebsite.com/page-a">Click Here</a>';
if(value < fieldname2) {
value = fieldname2;
text = 'Answer B. <a href="https://www.yourwebsite.com/page-b">Click Here</a>';
}
if(value < fieldname3) {
value = fieldname3;
text = 'Answer C. <a href="https://www.yourwebsite.com/page-c">Click Here</a>';
}
return text;
})()Finally, insert an “HTML Content” field in the form where display the text, and enter a DIV tag as its content with the
data-cff-fieldattribute to tell the plugin the field whose value you want to display in the tag:<div data-cff-field="fieldname4"></div>Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Facing issue on updating [Calculated Fields Form]Hello @ameerhamza2221
I checked your form structure it is trying to load a control that is not part of the plugin (AjaxButton). It appears that you have been using a customized version of the plugin.
If we implemented a customized plugin version for you, please contact us through the plugin website. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] After last updateHello @hoijmand
Please note your website has replaced the double quote valid symbols with the following ones:
[CP_CALCULATED_FIELDS id=”6″ iframe=”1″]The correct is:
[CP_CALCULATED_FIELDS id="6" iframe="1"]By the way for basic attributes’ values you can insert them with no-quotes:
[CP_CALCULATED_FIELDS id=6 iframe=1]Note you have inserted the shortcode directly by using an Elementor text widget instead of the Calculated Fields Form widget for Elementor:

Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculation FormulaHello @pexel
Sorry, but the plugin support does not cover implementing the users’ projects.
Please contact us directly through the plugin website if you need to hire a development service. Contact Us
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculation FormulaHello @pexel
You don’t need to use moment, our plugin includes the operations required to transform dates. Also, you can compare dates directly:
let d = DATEOBJ(fieldname32, 'dd/mm/yyyy');
let d1 = DATEOBJ(self.a4Dates[i][0], 'mm/dd/yyyy');
let d2 = DATEOBJ(self.a4Dates[i][1], 'mm/dd/yyyy');
if(AND(d1<=d, d<=d2)) {
/** The code here **/
}If you want to use the third-party “moment” library and have doubts about its use, you must contact the “moment” development team.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] CP_CALCULATED_FIELDS_RESULT not showingHello @i_mike
You have been using an outdated copy of the plugin Professional version.
Please contact us directly through the plugin website. Contact Us
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] CP_CALCULATED_FIELDS_RESULT not showingHello @i_mike
Thank you very much for using our plugin. Could you please provide the version number of your plugin copy? The shortcode for results is supported by the plugin commercial distributions (Professional, Developer, and Platinum).
Best regards.
Hi,
Yes, you can use the CP Referrer and Conversion Tracking for that purpose. Use the following configuration section:

Thank you for using the plugin!
Hi,
You can translate that text with a translation plugin like Locotranslate, WPML,… or you can also edit the translation PO file with the Poedit application.
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] After update CFF not sending POST valuesHello @lucavanon
You can do the same with the current plugin version, including a button to modify the form action as you did. You can even submit the form in the background, and then redirect the user to the page you prefer or let it in the form.
For more information about the commercial plugin features, please contact us via the plugin website. Contact Us
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Excellent plugin