codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Two optional checkboxes, only one allowedHello @pidengmor
Thank you very much for using our plugin. You’re describing the Radio Button behavior. Please use a radio button field instead of a checkbox.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Summarize getField/setValHello @msedighiyan86
Thank you very much for using our plugin. Your equation can be implemented as follows:
(function(){
getField(fieldname524|n).setVal(fieldname505);
return fieldname505;
})()Best regards.
Forum: Reviews
In reply to: [Appointment Hour Booking - Booking Calendar] Très bienThank you very much for the review!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field does not display HTML codeHello @radovand
Thank you very much for using our plugin.
The plugin preprocesses the fields’ values in the equations to use with mathematical operations. However, the plugin includes modifiers.
What are the modifiers? The modifiers are symbols you add to the fields’ names in the equations to tell the plugin how to handle the fields’ values and modify the default plugin behavior.
A modifier is |r. The |r tells the plugin you want to use the field’s raw value instead of the preprocessed one.
So, the second equation could be:
(function(){
return fieldname1|r;
})()Other modifiers are |n, and |v. They are not necessary in your current project but I will describe them in case you need these modifiers in the future.
The plugin replaces the fields’ names with their values before evaluating the equations. The |n modifier tells the plugin you are referring to directly to the field’s name instead of its value.
Eg.
(function(){
getField(fieldname123|n).setVal(fieldname1|r);
return fieldname1|r;
})()The |v modifier only applies to radio buttons, checkboxes, and dropdown fields. These controls contain choices, and each choice has a text and value. The plugin uses the values of the user-selected choices from the equations. The |v modifier allows you to access the value of the information these fields will submit.
For example, if you have the radio buttons field fieldname123, and you configured it to submit the choice text, and you use fieldname123 in the equation. You would be using the value of the choice ticked by the user. But if you use the |v modifier, fieldname123|v you would use, in this case, the choice text.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Deleting a FieldHello @bill93728
Thank you very much for using our plugin. I have replicated your form structure and I can add new fields and edit or delete the existing ones with no problems. However, I detected you are using a plugin to manage your website cache. Do you have enabled the third-party plugin the options to cache the website for registered users? Are you caching the WordPress administration too? If this is the case, please be sure you are not caching the website administration and purge both website and browser caches before editing the form structure.
Best regards.
Forum: Reviews
In reply to: [Appointment Hour Booking - Booking Calendar] Great pluginThank you very much for the review!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] GSC Error LinkForum: Plugins
In reply to: [Calculated Fields Form] GSC Error LinkHello @pexel
What I don’t understand is why the crawler is ignoring your robots.txt file.
The height registration occurs via post, not get.
Do you ticked the “Do not load the forms with crawlers” checkbox via the “Calculated Fields Form > Troubleshoots Area & General Settings” menu option?
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] GSC Error LinkHello @pexel
In this case, you can exclude them via the robots.txt file to exclude URLs with the cff-form parameter:
Disallow: /*?cff-form=*Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] GSC Error LinkHello @pexel
That is not a problem. You are loading the form directly into iframe tags whose URLs are generated dynamically with additional parameters to prevent they can be cached by third-party plugins. But as these URLs are generated dynamically they are not listed in the index file on your website or included in the robots.txt to be indexed by search engine crawlers. But that is correct.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] GSC Error LinkForum: Plugins
In reply to: [Contact Form Email] Scheduling Reports?Hi,
That configuration isn’t available at the present moment, we are looking forward to update that feature to support it. In the meantime, as a workaround, once enabled, as default it will send the reports 7 days from the current date. Enable the 7 days feature on a Thursday morning.
Thank you for the feedback!
Hello @marketingself01
Sorry, if you want to collect the user information and display a summary after form submission you need to upgrade the plugin copy.
Best regards.
Hello @marketingself01
Thank you for letting me know your form is working fine now. The shortcode for results is available only with the plugin Professional, Developer, and Platinum versions, but you are using the free one. In the free plugin version, you can display a thank you message on the thank you page but not the information collected by the form. It requires the shortcode for results.
Best regards.
Hello @marketingself01
I could access your form. The restriction is straightforward: you cannot use
"submit"as the name for the submit button in a form. This is a fundamental limitation in web development.Best regards.