codepeople
Forum Replies Created
-
Forum: Reviews
In reply to: [Music Player for WooCommerce] Good pluginForum: Reviews
In reply to: [Sell Downloads] Coupon Code feature is not what I expectedHello @cheristojk
I regret to hear that the discount coupon module does not meet the requirements of your project. Please note that this commercial feature is not included in the version distributed through the WordPress directory.
If you require customization of the plugin, please contact us through the plugin website as this is a commercial feature and not through the WordPress website.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of radio buttonsHello @bens2020
Sorry, but we have received notices about responding to commercial users through the WordPress forum.
We have not ignored your question, we have just encouraged you to ask it through the plugin’s website.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of radio buttonsHi!
Thank you very much for using our plugin.
Please note we are not allowed to support any customers in these forums by WordPress policy, and you have installed the Developer version of the Calculated Fields Form plugin.
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 site.
Thank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Чи є візуальний редактор формиPerfect !!!!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Чи є візуальний редактор формиHello @doradvokat
The issue with the styles in the form title and description is caused by the styles definitions:
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { font-weight: 700; font-family: 'Montserrat', sans-serif; letter-spacing: -0.05em; }and
h2, .h2 { font-size: 32px; line-height: 35px; }In the “https://doradvokat.com.ua/wp-content/cache/wpfc-minified/8limdj1t/201wp.css” file that is not part of our plugin.
If you don’t want the styles in the theme affect the files in the form, you can insert the form shortcode with the iframe attribute:
[CP_CALCULATED_FIELDS id="6" iframe="1"]More information about modifying the design 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] Чи є візуальний редактор формиHello @doradvokat
The issue with the form appearance is related to the styles inherited from the theme active on your website. Please provide the link to the page that contains the form to check the theme’s styles.
Best regards.
Hello @doradvokat
The PREC operation accept thre parameters, the value to round, the number of decimals, and true or false. If the third parameter is true, and the valis an integer, the operation does not include decimals to the result.
So, if want rhe result with only one decimal place, the equation would be:
PREC(fieldname9*(fieldname7/100)(0.789/1000)/(fieldname2*fieldname6),1,true)Note I included other important modifications in your code like the “*” operator and the correct decimal symbol “.”.
Please note the plugin support does not cover implementing the users’ projects. If you need the specific implementation of the equations, you should contact us directly through the plugin website:
https://cff.dwbooster.com/customization
Best regards.
Hello @doradvokat
Thank you very much for using our plugin.
The equations are entered through the “Set equation” attribute in the calculated fields, and the PREC operation must be the outermost operation in the equation.
If you have a simple equation like fieldname1*fieldname2 and want the result with four decimals, the proces is straightforward:
PREC(fieldname1*fieldname2, 4, true)However, in complex equations the process could not be evident.
For example, in te equation:
(function(){ if(fieldname1 < fieldname2) return fieldname1 * fieldname2; else return fieldname1/fieldname2; })()In this case, there are two last operations in the equation, the return instructions. So, you must call the PREC operation in both.
(function(){ if(fieldname1 < fieldname2) return PREC(fieldname1 * fieldname2, 4, true); else return PREC(fieldname1/fieldname2, 4, true); })()Best regards.
Hello @slimpickins
Thank you very much for the feedback. We will include the solution in the next plugin update.
Best regards.
Forum: Plugins
In reply to: [Data Source for Contact Form 7] Single quotes in meta keysHello @velphia,
My apologies for the delay in responding to your question. We have been checking the issue cause and implementing a solution.
Please install the latest plugin update, released just now, and purge your website and browser caches before testing your contact form again.
Best regards.
Forum: Plugins
In reply to: [Appointment Hour Booking - Booking Calendar] Emails not being sent anymoreHi,
That points to an email delivery issue in the email server. To confirm this I recommend you to install a WordPress email log plugin, these type of plugins will register every email sent from WordPress to the email server and you can detect this way on which side the email is being lost.
Depending of the result of the test you may need to contact hosting support service about the email delivery issue or to setup a SMTP connection to an email server to send the email other way.
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] Simple Help NeededHello @tristanpcrs
Thank you very much for using our plugin. If the “Appreciate Rate” and “Mortgage Interest Rate” are number fields configured as percentages (by selecting the “Percentage” option in their “Number format” attribute), the plugin transforms their values into decimals before evaluating the equations.
So, if these fields are the fieldname1 and fiedname2 respectively, and you need the equation output in percentage format, you must multiply the result by 100:
(fieldname1-fieldname2)*100Best regards.
Forum: Plugins
In reply to: [Booking Calendar Contact Form] Order of fields – impossible to changeHi,
Try installing the Query Monitor plugin to check what database error it reports on the “save settings” action.
However if you already have a license for the commercial version, the best option should be updating it to its latest version that is already compatible with PHP 8.x. For commercial-related 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] Use excel formula (GRAD)Hello @scc2452555
Thank you very much for using our plugin.
Our plugin includes many operations that satisfy some Excel functions, but it is not an Excel interpreter or emulator. You must implement the equations using the plugin operations, or JS.
The Excel formula =SUMME(GRAD(ARCSIN(N3/N4))) where N3 and N4 correspond to the fieldname2 and fieldname3 fields in the form can be implemented as follows:
Insert a calculated field in the form and enter the following equation through its “Set equation” attribute:
DEGREES(ASIN(fieldname2/fieldname4))Note I don’t include the equality symbol in front the equation.
Best regards.