CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Calculators not workingHello @lowercas3
Thank you so much for using our plugin. The issue you are reporting is caused by the “Boot Cache” optimizer plugin installed on your website. In the optimizer plugin, you have enabled the option to combine and minify website JavaScript files, and the minification process is breaking the resulting scripts.

Please modify the optimizer plugin settings and clear both the website and browser caches.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Form variables in Ajax thank you messageHello @edit4ever
Thank you very much for using our plugin. Yes, it’s possible, but not in that way. You can only use field tags in the thank you page or notification email contexts. The after-submission thank-you message is displayed directly on the client side.
Please follow the instructions below:
- Leave empty the thanks message in the form settings.
- Insert an “HTML Content” field in the form.
- Enter the following tag as its content:
<div class="cff-thanks-message" style="display:none">The field value is <span data-cff-field="fieldname1"></span></div>The
data-cff-fieldattribute tells the plugin the field whose value you want to display in the tag.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Professional version not workingHi @ohia !
Thank you so much for using our plugin. We’d like to help, but we can’t reply about that in this forum. 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.
Forum: Reviews
In reply to: [Calculated Fields Form] Great PluginForum: Plugins
In reply to: [Calculated Fields Form] Populate drop-down field with javascriptHello @irvingbos
Thank you so much for using our plugin. Yes, that’s possible. You need only to call the setChoices method in the DropDown field. For example, if the DropDown field is the fieldname123, you can insert an HTML Content field in the form, tick the checkbox in its settings to support scripts, and enter a script block in its content similar to:
<script>
fbuilderjQuery(document).on('formReady', function(){
getField('fieldname123').setChoices({texts:['text choice 1', 'text choice 2', 'text choice 3'], values:['value choice 1', 'value choice 2', 'value choice 3']});
});
</script>The getField operation returns the field’s object. The parameter of the setChoices method is an object with the texts and values properties whose values are the array of choices’ texts and values, respectively.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] control position of Submit buttom and CaptchaHello @irvingbos
Thank you os much for using our plugin. If you select the “Yes” option for the “Display submit button?” in the form settings, the captcha will be displayed before the submit button.
Please watch the following video:
https://resources.developers4web.com/cff/tmp/2025/10/30/video_o.mp4
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Prevent overseas submissionsHello @mpbaweb
Yes, the warning is normal because you are including a piece of JavaScript code in the form structure, but the code is valid. Simply tick the ‘I am certain this is a false positive’ box and click the ‘Allowlist this action’ button. You will then probably need to press the ‘Save’ button in the form settings again.
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Love it!Forum: Plugins
In reply to: [Calculated Fields Form] Prevent overseas submissionsHello @mpbaweb
I’m sorry, I forgot to include a conditional statement in the second example I provided previously:
(function(){
function getCountry(_callback) {
fbuilderjQuery.ajax({
url: 'https://geoapi.info/api/geo',
dataType: 'json',
crossDomain: true,
success: function(result) {
if(result['location']['country'] == 'GB') return;
fbuilderjQuery('form.cff-form').attr('onsubmit', 'return false;');
fbuilderjQuery('.pbSubmit').remove();
}
});
};
cffProxy(getCountry);
})()Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Prevent overseas submissionsHello @mpbaweb
You can try to identify the user’s country by calling the COUNTRY operation in the “Location Operations” module (https://cff.dwbooster.com/documentation#location-module).
For example, you can insert a calculated field in the form and enter the equations:
(function(){
if(COUNTRY().indexOf('United Kingdom') != -1){
fbuilderjQuery('form.cff-form').attr('onsubmit', 'return false;');
fbuilderjQuery('.pbSubmit').remove();
}
})()Another alternative is to use the cffProxy operation in the “Third-Party Connection” module (https://cff.dwbooster.com/documentation#connection-module) to call third-party services as follows:
(function(){
function getCountry(_callback) {
fbuilderjQuery.ajax({
url: 'https://geoapi.info/api/geo',
dataType: 'json',
crossDomain: true,
success: function(result) {
fbuilderjQuery('form.cff-form').attr('onsubmit', 'return false;');
fbuilderjQuery('.pbSubmit').remove();
}
});
};
cffProxy(getCountry);
})()If you need us to implement it for you, do not hesitate to contact us through the plugin website. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Button and resultsHello @ohtusabes
Please watch the following video:
https://resources.developers4web.com/cff/tmp/2025/10/24/video-columns_o.mp4
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Great featuresForum: Plugins
In reply to: [Calculated Fields Form] Conflict with cachebusterHello @charlesrodmell
If you have been satisfied with both the plugin and our support, we would be immensely grateful if you could leave us a review on the plugin ( https://ww.wp.xz.cn/support/plugin/calculated-fields-form/reviews/ ). Your feedback will help us reach more users.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Button and resultsHello @ohtusabes
No, they do not have the
col-xs-6class name assigned. Please could you provide a screenshot showing these field settings?Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Button and resultsHello @ohtusabes
You have not followed my instructions. Neither fieldname9 nor fieldname4 has been assigned the class name
col-xs-6This must be done through their “Add CSS design keywords” attributes.
Best regards.