codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Formula QuestionHello @helloplanetat
The “Customize Form Design” attribute in the “Form Settings” tab is a CSS editor with syntax highlighting and errors check. It allows you to customize the form and fields’ appearance. For example, if you want to modify the form font-family, you can enter the style definition below (or similar) through the “Customize Form Design”:
#fbuilder *{font-family: Arial, Helvetica, sans-serif !important;}Learn more about the form and fields customization by reading the following blog post:
https://cff.dwbooster.com/blog/2020/01/12/form-design
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Page crashingHello @hheyhey568
I tested your form on mobile and it worked fine. Please look at the screenshot image below:

If you don’t want the iframe load to affect the page performance, you can insert the form shortcode with the asynchronous attribute:
[CP_CALCULATED_FIELDS id="54" iframe="1" asynchronous="1"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Copy many fields at onceHello @hheyhey568
You can group these fields into a DIV field, and duplicate the DIV field.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Formula QuestionHello @helloplanetat
Thank you very much for using our plugin. I don’t know the values you want to sum in “Then add the two values together”. But if you are referring to summing the min_value/2+max_value
Assuming the input fields in your form are:
Elevation gain, fieldname1
Distance, fieldname2And the equation in the calculated field:
(function(){ let v1 = fieldname1/300, v2 = fieldname2/3; return MIN(v1,v2)/2+MAX(v1,v2); })()However, if you are referring to min_value/2+min_value, the equation would be:
MIN(fieldname1/300,fieldname2/3)*1.5Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] User not getting emailHello @adrummer11
Please check the spam folder in the email client. However, suppose the recipient is blocking the emails coming from your website. In that case, you can configure any of the SMTP connection plugins distributed for free in the WordPress directory (https://ww.wp.xz.cn/plugins/search/smtp/), and configure it to use the SMTP server in your hosting provider. Please enter the email address used for connecting the SMTP server into the “From” attribute in the form settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Error 403 for any Calculated Field when updatingHello @alanknott
The issue you’re reporting is caused by a false positive in the security rules on your server or a third-party plugin like WordFence. The equations are implemented in JS code, and your server is blocking the update form action because detects the existence of JS code. Please ask your hosting provider to fix the server rules.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Selective CFF forms stop displayingHello @dthimsen
There are some issues with your template.
First, each template must be in its own directory into the https://www.jonesbrothersmarine.com/wp-content/uploads/calculated-fields-form/templates/ URL.
Second, you are using the same selector in the ini and CSS files of an existing template (
cp_cff_professional)Please create a new directory for the custom template, and replace
cp_cff_professionalin both the ini and CSS files.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Selective CFF forms stop displayingForum: Reviews
In reply to: [Music Store - WordPress eCommerce] Great oneForum: Reviews
In reply to: [Calculated Fields Form] solid plugin with great supportForum: Plugins
In reply to: [Calculated Fields Form] Selective CFF forms stop displayingHello @dthimsen
You have two alternatives: insert an “HTML Content” field in the form and enter a LINK tag to load the CSS file as its content, or use the plugin mechanism to create custom templates. Note the forum thread you are referring to is 4 years old. Please read the following post in the plugin blog:
https://cff.dwbooster.com/blog/2021/09/27/create-new-form-template/
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Selective CFF forms stop displayingHello @dthimsen
The issue you are reporting can be caused by the cache management plugin active on your website. The avoid the cache management plugin affecting the forms, please insert the form shortcode with the iframe attribute set at 1.
Ex.
[CP_CALCULATED_FIELDS id="24" iframe="1"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Voting weightHello @ikus1i
Thank you very much for using our plugin. The implementation will depends on your data.
If every person has associated a weight for a survey with three possible answers. Each time a user votes, you can populate four variables in the database, I will call them A, B, C, and TOTAL.
If the user selects the first choice, the variables A and TOTAL will be increased in the user weight.
If the user selects the second choice, you can increase the variables B and TOTAL, and C and TOTAL if the user selects the third choice.
At the end of the process, you can generate the ranking of the votes by comparing the values A/TOTAL, B/TOTAL, and C/TOTAL. Or if you want them into percentages: A/TOTAL*100, B/TOTAL*100, and C/TOTAL*100
Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] ConfusedHello @omigosh
I’m sorry, but we cannot modify how PayPal works from the plugin. If you want to use PayPal you must configure PayPal properly and activate the IPN (our plugin includes the instructions from the store settings page, but there are multiple tutorials in the PayPal documentation).
If you don’t want to use PayPal, you can install and configure the https://ww.wp.xz.cn/plugins/music-store-stripe-add-on/ plugin and sell your products using Stripe as the payment gateway.
Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] ConfusedHello @omigosh
Thank you very much for using our plugin.
PayPal Sandbox and Production are separate accounts. If you select the Sandbox option in the store’s settings, you must enter an email address associated with a Sandbox account, and the same happens with the Production account. Also, PayPal does not allow using the same account for the buyer and seller.
When the buyer presses the “Buy Now” button, he is redirected to PayPal. The buyer must log in to his PayPal account and complete the payment.
Please note you must active the IPN (Instant Payment Notifications) in your PayPal account to allow PayPal to notify your website after every purchase to register it and generate the download links.
Best regards.