Hello.
The plugin use the field with type number. More about it, you can read on the page https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number
It’s not possible change the dot on comma. Sorry
I have a calculator on my site. I can input decimals with comma, calculation is correct. So woo seems to convert them automatically based on locale setting.
The output field shows dot instead of comma.
Maybe you can implement a setlocale function for output fields?
You can use the function toLocaleString() in formula. Read more about the function https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString
For change the dot on comma, you can use:
y[1] = (x[1]).toLocaleString("de-DE");
Thank you very much. This is what I was looking for.