klingbeil
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Result ScreenHello, we were able to write the result to the right block with the code at the bottom without any problems.
But when we say reset, it just resets the form content. Do we have a chance to reset the results in the right column?
Thanks.(function(){ var result = fieldname1+fieldname2; jQuery('#result-container').html(result); return result; })()
Forum: Plugins
In reply to: [Calculated Fields Form] Dropdown CalculatorI am so grateful to you for this awesome plugin it solves many of our tasks.
(function(){ var result = fieldname1+fieldname2; jQuery('#result-container').html(result); return result; })()
Can we add two letters “XX” to the end or beginning of the output value? I want to write the unit of the result..
Thank you very much.
And do we have a chance to print the result as digits?
Example: As 2,568,22.- This reply was modified 1 year, 11 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] Dropdown Calculator(function(){ var yuzdeA = 0; if (fieldname14 == 'A') { yuzdeA = (fieldname16*fieldname17)/100; } jQuery('#calculation-yuzdeA').html(yuzdeA); return yuzdeA; })();
How to use PREC correctly in this section?
- This reply was modified 1 year, 11 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] CLS ProblemThank you for solving both our CLS issue and our style button issue. I am fascinated with this plugin more and more every day.
Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormThank you for solving both our CLS issue and our style button issue. I am fascinated with this plugin more and more every day.
Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormSorry for posting on the wrong topic. Can you explain with an example for the reset button?
how exactly can i use theme styles for calculate button and reset button. thanks a lotForum: Plugins
In reply to: [Calculated Fields Form] CLS ProblemForm height 565px how do I define it to get around the cls issue. How to use this feed?
Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormCould you please explain briefly with an example?
- This reply was modified 1 year, 11 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormHi, below code worked perfectly.
In addition I also put a Reset button.
I want to put a different style button on the reset button in the theme.
How do we do this?<script> fbuilderjQuery(document).one('showHideDepEvent', function(){ fbuilderjQuery('#fbuilder input[type="text"]').addClass('wpcf7-form-control wpcf7-text eduvibe-contact-form-field'); fbuilderjQuery('#fbuilder input[type="button"]').addClass('wpcf7-form-control has-spinner wpcf7-submit eduvibe-button-with-icon'); }); </script>
Thanks
- This reply was modified 1 year, 11 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormCan we restrict the calculated result?
For example, calculation result: 0.85566998855
We want to show it as : 0.855 and add cm3 to the end.Forum: Plugins
In reply to: [Calculated Fields Form] Style and FormIt’s great to learn to work with you.
So finally how do we define button styles (compatible with our theme)
samples
wpcf7-form-control has-spinner wpcf7-submit eduvibe-button-with-iconForum: Plugins
In reply to: [Calculated Fields Form] Style and FormHello;
So how can we use theme styles?
Sample theme form;<input size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required eduvibe-contact-form-field" aria-required="true" aria-invalid="false" placeholder="Name*" value="" type="text" name="text-245">
For example, how can we adapt this form style to the calculated form style?
Thank youForum: Plugins
In reply to: [Calculated Fields Form] Result Screenthank you
- This reply was modified 1 year, 11 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] Result ScreenI have never seen a software developer who supports his work as much as you.
Thank you very much sincerely.
Forum: Plugins
In reply to: [Calculated Fields Form] Result ScreenHello;
I tried to do it step by step as you said.- Step
2. step
It cannot write the result to the div you have given.
Where am I going wrong?
Thanks.Additional Note: I’ve given you a lot of trouble, I’m trying to learn, I’m in the last part.