CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] User Account pageHello @kay69
Thank you so much for using our plugin. Unfortunately, the features you require are only available in the Developer and Platinum distributions of the plugin.
The “Users Permissions” add-on allows you to control the form access and assign permissions to the users to access their submissions and edit or delete them. Actually, for security reasons, the add-on does not delete the submissions, deactivate them, or edit the original submissions; it creates a new copy of the data and deactivates the original entry. Only a user with the administrator role can edit the original submissions or delete them.
The add-on includes a new shortcode you can insert in a page accessible by the users to access their submissions. Please read the following blog post:
https://cff.dwbooster.com/blog/2019/07/04/users-permissions
The plugin includes another add-on, the “User Registration Form” that allows you to create new users by using a form created with our plugin:
https://cff.dwbooster.com/add-ons/user-registration-form
Please note that the forum policy does not allow us 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] Enhancements requestHello @irvingbos
Thank you so much for using our plugin and the suggestions.
Some of your suggestions have been partially implemented, and others are in progress. For instance, when you delete a field from a form, the plugin displays a red frame around any calculated fields that use the deleted field in their equations. This makes it easier to identify the equations to edit.
We are working on allowing the use of short labels directly in certain contexts, such as notification emails and thank-you pages. We are also working on the option to swap fields in the form.
The issue with short labels is that the plugin loses control over field identification. For example, since users cannot modify the field IDs, it is easy to identify the field to display when they enter tags, like
<%fieldname1%>in the notification email. However, since the short label is entered by the user, it is hard to solve the ambiguity when the user enters short label tags, e.g.<%product-name%>, but it was assigned to multiple fields.Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Best calculator plugin, but…Forum: Plugins
In reply to: [Calculated Fields Form] No-index FormHello @famjad86
The answer to this question requires more details, such as: What styles are you entering? What elements do you want to modify and how? Where did you enter the styles in the form settings?
To ensure the styles you’re entering take precedence over other styles in the page, I recommend using the !important modifier with the CSS rules.
For example, assuming you want to apply the color green to every form field’s label, in this hypothetical case, you can enter the style definition below through the “Customize Form Design” attribute in the “Form Settings > Advanced Settings” tab:
#fbuilder .fields>label{color: green !important;}Learn more about the form design customization by watching the following video tutorial:
https://youtu.be/acZC-fVh3y8?list=PLY-AOoHciOKgZQsqWfkQlHJ21sm3qPF9X
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] No-index FormHello @famjad86
We will answer your question in this thread or another, as you prefer.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] No-index FormHello @famjad86
Thank you so much for using our plugin. Yes, that’s possible. Please visit the “Calculated Fields Form > Troubleshoot Area & General Settings” menu option, tick the “Do not load the forms in crawlers” checkbox, and finally, press the “Update” button.
Best regards.
Forum: Reviews
In reply to: [Search in Place] Just what I needed!!Forum: Reviews
In reply to: [Calculated Fields Form] Best calculator plugin, but…Hello @bendelarosa
Can I make some suggestions? Your form is great, but it would look much better with fields in columns. Please watch the following video tutorial:
https://youtu.be/5wguFUR4pD8?list=PLY-AOoHciOKgZQsqWfkQlHJ21sm3qPF9X
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Best calculator plugin, but…Hello @bendelarosa
Please note that the reason of including two boxes is separate both contexts, the visual information (and the information to send the server) from the internal use values (the choices values for calculation). It is like with SELECT tags in the HTML standard:
<select>
<option value="First option value, not visible">First option text, visible</option>
<option value="Second option value, not visible">Second option text, visible</option>
<option value="Third option value, not visible">Third option text, visible</option>
</select>This allow you even format the visible currency value with the preferred format:
Text ($1,234,567.00)while the corresponding choice’s value must be a valid number if you want to use it in mathematical operations:1234567Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Best calculator plugin, but…Hello @bendelarosa
Thank you so much for the review. For your explanation, I suppose you are referring to DropDown, Checkbox, or Radio Button fields that include two separate boxes for the choices’ texts and values. The choices’ texts are visible in the form; their values are used for calculation. If you want to display the prices in the form as well as the current text, please enter them in the choice texts, such as
Product Bravo ($100.00)and ProductCharly ($150.00), and the numbers100and150as their corresponding values.Best regards.
Forum: Reviews
In reply to: [CP Media Player - Audio Player and Video Player] Very Good !Forum: Plugins
In reply to: [Calculated Fields Form] Plugin slows down scrollingHello @patrickshepherd
Thank you so much for using our plugin. Please note that the plugin is the platform that allows developers to create their forms, and includes multiple operations and tools to generate forms as complex as projects require. However, the final form performance will depend on the form developer. For example, the following equations return the same result:
(function(){
let result;
if(fieldname1 == 'A') result=10;
if(fieldname1 == 'B') result=100;
if(fieldname1 == 'C') result=1000;
if(fieldname1 == 'D') result=10000;
if(fieldname1 == 'E') result=100000;
if(fieldname1 == 'F') result=1000000;
if(fieldname1 == 'G') result=10000000;
return result;
})()
(function(){
let result;
switch(fieldname1){
case 'A': result=10; break;
case 'B': result=100; break;
case 'C': result=1000; break;
case 'D': result=10000; break;
case 'E': result=100000; break;
case 'F': result=1000000; break;
case 'G': result=10000000; break;
}
return result;
})()({A:10, B:100, C:1000, D:10000, E:100000, F:1000000, G:10000000})[fieldname1]All of them are valid, but the last equation’s performance is much better than the first equation, and better than the second equation.
What I try to explain is that there is a direct relationship between the form performance and its implementation, and the form performance affects the page’s performance.
Regardless of the fact that the form should always be optimized, there is a way to insert it into the page without affecting its performance.
Please use the iframe and asynchronous attributes in the form’s shortcode. For example, if your form ID is 123, insert its shortcode as follows:
[CP_CALCULATED_FIELDS id="123" iframe="1" asynchronous="1"]If you are inserting the form visually through its editor module, there is a checkbox to load it into an iframe, and in the box for entering additional attributes, you should enter
asynchronous="1"Learn more about the shortcode attributes by reading the following section in the plugin documentation:
https://cff.dwbooster.com/documentation#insertion-page
Best regards.
Forum: Reviews
In reply to: [Search in Place] perfectForum: Reviews
In reply to: [Calculated Fields Form] Awesome plugin and BEST support