tosh11formula
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Show only highest Value on 2 Calculated fieldsHi @codepeople ,
It works Thank you,
One thing is there a way to have validation, that 500 above value is required before computing the total amount?
Here’s my equation9500*fieldname11/500
Forum: Plugins
In reply to: [Calculated Fields Form] Show only highest Value on 2 Calculated fieldsCORRECTION: I will hide this calculated field, but will show the highest value. is this possible?
Forum: Plugins
In reply to: [Calculated Fields Form] Change background color and text of calculated FieldIt works!
Thank you so much!Forum: Plugins
In reply to: [Calculated Fields Form] Change background color and text of calculated FieldHi @codepeople
I want also to include ah background color on it? is that possible? because its back to old color.
if ( NOT(result) ) return '';
field.css({background: 'black'});Forum: Plugins
In reply to: [Calculated Fields Form] Change background color and text of calculated FieldHi @codepeople,
Hi it’s working,
Also is this possible that
return
message will not show if there’s no value in the field before compute? because when user open the calculator the return message especially inresult < 1
"Below 1 CBM kindly message us";
result was show even if there’s no value in the field?Thank you,
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field max valueForum: Plugins
In reply to: [Calculated Fields Form] Calculated field max valueHi @codepeople ,
It works already,
One thing is there a chance that
return
message will be like this error message instead of showing error in fields?here’s my code
(function(){
var result = fieldname8*9500;
if(284910<result) alert 'Error Message';
return PREC(result,2);
})()Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field max valueHi @codepeople?
Code Works
but I have a problem with other result, instead of
9,500
it become95
still possible the default is
9,500
ROUND(IF(fieldname8, fieldname8*9500, 9500))
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field max valueGreat, it is also possible to min of 5 and max 30?
if(5>result) return 'Minimum 5', else if(30<result) return 'Max 30';
Forum: Plugins
In reply to: [Calculated Fields Form] Default Value Calculated fieldsGreat, Thank you for your help
Forum: Plugins
In reply to: [Calculated Fields Form] Default Value Calculated fieldsThank you on this,
Anyway, it is also possible the value on
Fields
is 3 characters only,for example: allowed for field is max 999, they not allowed to input more characters, is this also possible?
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Pricing Breakdowns PDFHi
Here’s the Outputhttps://ibb.co/N7gr8Wv – WP Dashboard Admin
https://ibb.co/cL90byc – Order details
https://ibb.co/GWk9Zrm – PDF
https://ibb.co/ZSXjnpW – EmailThe “Test Item” Price is 25K but it computes all the total component’s price in Test item which is very confusing. In WP dashboard admin is correct, but when i generate PDF invoice, the computation of the item is wrong. can you help me on this?
Thank you,