codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Updating the plugin to the latest versionHello @lowercas3
We’d like to help but we can’t reply about that in this forum. We are not allowed 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] Opacity ColorpickerHello @ra2or
Thank you very much for using our plugin. The color picker control in our plugin uses an input tag with
type="color"to load the default color picker on browsers.Learn more about the browser’s color picker by reading its documentation on the following page:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/color
And pay special attention to the blue frame with note in the documentation:
>>> Note: Setting the value to anything that isn’t a valid, fully-opaque, RGB color in hexadecimal notation will result in the value being set to
#000000. In particular, you can’t use CSS’s standardized color names, or any CSS function syntax, to set the value. This makes sense when you keep in mind that HTML and CSS are separate languages and specifications. In addition, colors with an alpha channel are not supported; specifying a color in 9-character hexadecimal notation (e.g.#009900aa) will also result in the color being set to#000000.If you need a custom coding service to integrate another color picker, please do not hesitate to contact us via the plugin website. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] After last updateForum: Plugins
In reply to: [Calculated Fields Form] Live countdown timerHello @pexel
The calculated field in your form is not the fieldname5. So the code
EVALEQUATION(fieldname5|n);makes no sense. You must enter the name of the calculated field where you entered the equation. Please reread my previous entries.Please note the plugin support does not cover the implementation of the users’ projects. If you need someone to implement your form equations, contact us through the plugin website. Contact Us
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Live countdown timerHello @pexel
First, you cannot include extra space characters.
The correct is
fieldname5|nbut you enteredfieldname5 | nSecond, you must evaluate the current equation, not the equation in the fieldname5 fields. Also, you don’t need a field extra to get the current date/time, only use the NOW operation.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Conditionals and text string in the calculated fieldHello @ohtusabes
I’ll try to describe the process with a hypothetical example.
Assuming the fields for “CRITERIOS MAYORES” are fieldname1 and fieldname2, and the fields for “CRITERIOS MENORES” are fieldname3, fieldname4, fieldname5, fieldname6, and fieldname7.
You can insert a calculated field in the form and enter the following equation:
(function(){
let count1 = SUM(fieldname1, fieldname2, function(x){ if ( x == 'Sí') return 1; return 0;});
let count2 = SUM(fieldname3, fieldname4, fieldname5, fieldname6, fieldname7, function(x){ if ( x == 'Sí') return 1; return 0;});
if( OR(count1 == 2, AND(count1 == 1, count2 == 3), count2 == 5) ) return 'Endocarditis infecciosa confimada';
if( OR(AND(count1 == 1, count2 == 1), count2 == 3)) return 'Endocarditis infecciosa probable';
return 'Endocarditis infecciosa rechazada';
})()Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Live countdown timerHello @pexel
Yes, you can use the DATEDIFF and NOW operations. Assuming the date/time field in the form is the fieldname1 field, you can insert a calculated field ( I’ll call it fieldname2 ) and enter an equation similar to:
(function(){
if ( typeof my_timout_identifier != 'undefined' ) clearTimeout( my_timout_identifier );
my_timout_identifier = setTimeout( function(){ EVALEQUATION(fieldname2|n); }, 1000 );
let o = DATEDIFF(NOW(), fieldname1, 'yyyy/mm/dd hh:ii', 'd');
return CONCATENTATE(o['days'], ' days ', o['hours'], ' hours and ', o['minutes'], ' minutes');
})()Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Yazdırma (Button) SayfasıHello @metesey
Thank you very much for using our plugin. The process is simple. To insert a print button, you need only to insert a button field in the form and select the “Print form” option as its type.
To hide fields from the printed copy of the form, you should enter the
cff-no-printpredefined class name through their “Add CSS Layout Keywords” attributes.Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Copy / Duplicate the form in another domainHello @shribhandare
Thank you very much for using our plugin. The Export/Import feature is distributed with the commercial plugin versions. The action generates a .cpfm file with the form structure you can import on your other domains.
Learn more about the Export/Import feature by reading the following section in the plugin documentation:
https://cff.dwbooster.com/documentation#import-export-form
Also, the following link contains a comparison of the different plugin versions and their features:
https://cff.dwbooster.com/download#comparison
Best regards.
Hi,
Please try first changing the “script load method” to “Direct” in the troubleshoot area of the plugin (located under the Appointment Hour Booking menu >> General Settings >> Troubleshoot).
Thank you for using the plugin!
Hi,
Please indicate what version number of the plugin you are using.
Thank you for the feedback!
Hi,
Use the field “TIME” instead “app_starttime_1”. Example:
[CP_APP_HOUR_BOOKING_LIST from=”10/24/24″ to=”10/24/24″ fields=”DATE,TIME,fieldname12,email” calendar=”32″]Thank you for using the plugin!
Forum: Reviews
In reply to: [Calculated Fields Form] Excellent plugin and supportForum: Plugins
In reply to: [Calculated Fields Form] Reveal question after previous question is answeredForum: Plugins
In reply to: [Calculated Fields Form] Reveal question after previous question is answeredHello @jcollier
You need only to select field 2 from the list of dependent fields of each choice in the radio button.
Note you can press the plus (+) button to make more fields dependent on the choice.
Best regards.