Hi,
The plugin allow you define the content of two emails, the notification emails (that are sent to the website’s owners), and the confirmation emails (to be sent to the user that populates the form), both sections are available in the form settings.
If you want test the features of the pro and developer versions of the plugin, please, visit the following link:
http://cff.dwbooster.com/home#demos
Best regards.
Thread Starter
perolf
(@perolf)
Everything is looking good, however, how/where do I define the decimal places for the amount? Instead of $12 I would like $12.00 displayed.
Also, I changed one of the number to $10.51 and then all the calculations were not correct. Is there something else that needs to be done?
Hi,
To display the result with two decimal places, use the PREC operation:
PREC(X,Y) round the number X with Y decimal places.
For example:
PREC(1.3637, 2) = 1.36
PREC(1.3637, 3) = 1.364
If you are modifying the values of fields but the calculated field does not returns a valid result, the possible causes are:
1. The field is not used in the equation.
2. The equation is wrong, and generates a javascript error.
3. The checkbox: “Eval dynamically the equations associated to the calculated fields” in the “Form Settings” tab is unchecked, in whose case should be inserted a calculate button in the form.
Best regards.