codepeople
Forum Replies Created
-
Hello @marketingself01
Thank you very much for using our plugin. The URL provided responds with the error message:
>>> This site can’t be reachedblog.selfadm.com.br’s DNS address could not be found.
Best regards
Forum: Reviews
In reply to: [Calculated Fields Form] The best calculation forms on WordPressForum: Plugins
In reply to: [WP Time Slots Booking Form] Show booked slots tooHi,
Check the following FAQ entry for instructions to set those colors
https://wptimeslot.dwbooster.com/faq#275
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] Range in slider?Hello @rasmuslynegaard
Thank you very much for using our plugin.
The plugin allows you to create a range slider. In range sliders, you select the left and right values, and by entering {0} – {0} in its caption attribute, you display both edge values.
Best regards.
Forum: Reviews
In reply to: [Music Player for WooCommerce] Good pluginForum: Plugins
In reply to: [Calculated Fields Form] Setting up a Reply-To?Hello @supervinnie41
Some minutes ago, we released a plugin update that allows entering “Reply-To” emails explicitly through the form settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Setting up a Reply-To?Hello @supervinnie41
Not exactly. The free version of the plugin did not include the option to send emails. This functionality was included in the free version of the plugin recently. In previous versions of the plugin, the free distribution only allowed to make forms that execute operations (evaluate equations) in the browser, but did not allow to send this information.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Multiple condition for different equationHello @ramanandmehta
Thank you very much for the link. The issue is caused by your form structure and fields’ values. For example, in the gender field, you entered the choices’ texts but not their values. So, the value of the gender field will be the empty text. The equations use the choices’ values, please enter them.
The “Formula” field has an additional problem, you left its choices’ values empty and configured it as dependent on the “Show Advance setting” field. So, when the “Show Advance setting” is unticked, the “Formula” field value will be empty.
So, the solution to your equation is:
- Enter all choices values, in the “Gender” and “Formula” fields.
- If you have configured the “Formula” field as dependent, you should implement the condition in the equation as follows:
if (fieldname56 === "Miffin St Jeor") {
/* Your code Here */
} else {
/* Your code Here */
}In this case, the “else” code block would be evaluated if the fieldname56 choice selected is
"Revised Harris-Benedict"or the field is deactivated by the dependency.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Multiple condition for different equationHello @ramanandmehta
Please don’t use single line comments in the equations:
// Return 0 if the conditions are not metThe plugin tries to minify the equations code and the single-line comments structure could make this process fail. Use block comment structure instead:
/* Return 0 if the conditions are not met */The rest of the code in the equation seems correct, but I would need the link to the page containing the form because I cannot check from the code in your entry if the fields’ values used for comparing are correct.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Settings are not savingHello @amora1128
I guess you have a cache issue. I visited your website and the loading screen does not show the percentage. Please watch the video by visiting the following link:
https://resources.developers4web.com/cff/tmp/2024/07/17/video_o.mp4
Hi,
Please read the following info about related solutions and features for booking different services with separated availability:
https://apphourbooking.dwbooster.com/blog/2019/07/25/book-multiple-services-timeslot/
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] shortcode dont workHello @smalavi06gmailcom
It seems the WordPress editor is modifying some characters but the issue is the same. Please insert a block for code into the editor and paste the info inside it.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] shortcode dont workHello @smalavi06gmailcom
I cannot check your form, your website displays the error message:
نامکاربری یا رمز عبور اشتباه است. لطفا دوباره امتحان کنیدBest regards.
Forum: Plugins
In reply to: [Calculated Fields Form] shortcode dont workHello @smalavi06gmailcom
You should not expose access to the WordPress forum. If you visit directly the forms URLs they are loaded with no problems. Please visit the following links:
https://tan-shad.ir/?cff-form=7
https://tan-shad.ir/?cff-form=8
https://tan-shad.ir/?cff-form=9
If the forms are not loaded on the website pages, please insert their shortcodes with the iframe attribute. Ex.
[CP_CALCULATED_FIELDS id="7" iframe="1"]
[CP_CALCULATED_FIELDS id="8" iframe="1"]
[CP_CALCULATED_FIELDS id="9" iframe="1"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dynamically evaluate not working since updateHello @brihen
Your equation in the fieldname5 field has a parser error. For example, in the equation:
IF(fieldname8==1,8300, IF(fieldname8==2,7930, IF(fieldname8==3,7250, IF(fieldname8==4,7800, IF(fieldname8==5,8800, IF(fieldname8==6,8000, IF(fieldname8==7,8960, IF(fieldname8==8,8900, IF(fieldname8==9,8100,0))))))))The number of open parenthesis
(is different to the close parenthesis)Also, if you want to round the result with five decimal places only if the result is not an integer number, you must pass true as an extra PREC operation parameter:
PREC(((fieldname6 * POW(fieldname3,2)/4)*1*fieldname5),5, true)Best regards.