CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Clean/reset valuesHello @dareko
You can check the raw values. The plugin pre-processes the fields’ values to allow using them in mathematical operations. However, when you use the fields’ names in the equations with the |r modifier, you are telling the plugin you want to use fields’ raw values instead of the preprocessed ones:
(function(){
var values = [fieldname2|r, fieldname3|r, fieldname4|r, fieldname5|r];
return values.filter((x) => x !== '').length;
})()The plugin supported modifiers are described in the following section of the plugin documentation:
https://cff.dwbooster.com/documentation#modifiers
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Watermark behind calculated field formHello @eparekenhulp
I checked the forms that are accessible through your website pages, and the watermark is displaying fine. Please watch the video by visiting the following link:
https://resources.developers4web.com/cff/tmp/2025/08/01/video_o.mp4
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Watermark behind calculated field formHello @eparekenhulp
I visited the URL provided, but it does not include the calculator form. Could you please provide the URL that contains the form, or indicate the options I need to select to access it?
Best regards.
Forum: Plugins
In reply to: [Music Player for WooCommerce] PHP versionHello @ollyw
Thank you very much for your feedback. If you encounter any compatibility issues, please contact us again.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Submitted results display issueHello @mpbaweb
Thank you for choosing our plugin! Rest assured, it is fully compatible with WordPress 6.8.2.
The notice you’re seeing appears because WordPress core only recognizes the free version hosted in the official WordPress Plugin Directory, not commercial or privately distributed editions.
For your reference, we routinely test the plugin on a variety of environments, including the latest WordPress releases (even beta and release candidate versions), to ensure seamless compatibility and performance. If you have any further questions or run into issues, please don’t hesitate to reach out.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Submitted results display issueForum: Plugins
In reply to: [Music Player for WooCommerce] PHP versionHello @ollyw
I apologize for the delayed response to your question. I was setting up a new website with only WooCommerce and the Music Player for WooCommerce in an environment with PHP 8.4.10. After conducting some tests, I confirmed that everything worked properly (there are no compatibility problems with PHP 8.4). Please watch the video by visiting the following link:
https://resources.developers4web.com/cff/tmp/2025/07/15/video-wcmp_o.mp4
Could you please provide the version number of your plugin copy and share the error details? These details should be recorded in the error log file on your server.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Submitted results display issueHello @mpbaweb
Thank you so much for the additional details. Deleting a form does not delete its submissions, which is fine because the submissions contain valuable information. Note that you can also delete submissions from the “Calculated Field Form > Entries” menu option. However, when you delete the form, the plugin loses the reference to the form’s structure and cannot access the labels of the fields separately. As a result, the shortcode displays a summary of the collected data. In the next plugin update, however, we will only include those submissions on the public website whose form still exists.
Please install the next plugin update.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Submitted results display issueHello @mpbaweb
Please provide the complete shortcode for results structure so we can check it.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Submitted results display issueHello @mpbaweb
Thank you for choosing our plugin. Could you please provide the full structure of the shortcode for the results list? If you have deleted the form, why not remove its shortcode for results associated with this form ID?
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] PDF IssueHello @massimo1971
Thank you for choosing our plugin!
The “CFF – PDF Generator” add-on lets you create complex PDF structures using information collected from forms. If you want to populate an existing PDF file, however, you can activate the “CFF – WebMerge” add-on to integrate your form with the “FormStack Documents” service (formerly WebMerge). Please read the following blog post:
https://cff.dwbooster.com/blog/2018/10/15/webmerge/For a local solution, your server must have the PDFtk application or a similar program installed. If you have PDFtk installed and need custom coding services, contact us through the plugin website. Contact Us
Regarding your request about WhatsApp, the WhatsApp API is only available for business accounts. It charges per message. (https://developers.facebook.com/docs/whatsapp/cloud-api/)
However, if you have a WhatsApp Business account, you can enable the “CFF – WebHook” add-on and integrate your form with WhatsApp via Zapier:
Learn more about the “CFF – WebHook” add-on, please read the following blog post:
https://cff.dwbooster.com/blog/2018/09/17/webhook-add-on/
Please note that your questions are for the plugin’s commercial features, and 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: Plugins
In reply to: [Calculated Fields Form] Columns issue in iframeHello @rotertal
Depending on the appearance you want to apply to the form based on the screen’s size, you assign the classes to the fields. For example, if you have a form with four fieldsets and want to display them in four columns on wide screens and two columns on standard screens, you can assign both class names col-lg-4 and col-sm-6 to each field by entering
col-lg-4 col-sm-6through their “Add CSS Layout Keywords”. The number of columns will vary based on the screen size.Please watch the following video tutorial:
https://youtu.be/NSac2cAN8RE?list=PLY-AOoHciOKgZQsqWfkQlHJ21sm3qPF9X
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Columns issue in iframeHello @rotertal
I’m sorry if my previous explanation wasn’t clear, so I’ve created a short video demonstration. When content is loaded inside an iframe, the page’s width is constrained by the iframe’s own width, so you should use
col-sm-*classes instead ofcol-lg-*to ensure proper responsiveness. Also, it appears your site’s cache is serving an outdated version. Please clear or disable your cache while testing.https://resources.developers4web.com/cff/tmp/2025/07/10/video-iframe_o.mp4
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Columns issue in iframeHello @rotertal
All the issues you are experiencing are due to your website’s cache. Please ensure you clear both the website and browser caches.
Please watch the following video:
https://resources.developers4web.com/cff/tmp/2025/07/10/video-cache.mp4
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Columns issue in iframeHello @rotertal
Please insert an “HTML Content” field in the form, tick the checkbox in its settings to accept advanced tags, and enter the following piece of code as its content:
<style>body>*:not(form){visibility: hidden; width: 0; height: 0;} .pac-container, .ui-tooltip, .ui-tooltip *,.ui-datepicker,.ui-datepicker *{visibility: visible; width: auto; height: auto;}</style>
<link rel="stylesheet" id="hello-elementor-css" href="https://app.trialanderrorsoftware.com/wp-content/themes/hello-elementor/style.min.css?ver=3.3.0" media="all">
<link rel="stylesheet" id="hello-elementor-theme-style-css" href="https://app.trialanderrorsoftware.com/wp-content/themes/hello-elementor/theme.min.css?ver=3.3.0" media="all">
<link rel="stylesheet" id="hello-elementor-header-footer-css" href="https://app.trialanderrorsoftware.com/wp-content/themes/hello-elementor/header-footer.min.css?ver=3.3.0" media="all">
<link rel="stylesheet" href="https://app.trialanderrorsoftware.com/wp-content/themes/hello-elementor-child/forms.css">Best regards.