Hi,
Sorry for a late reply. I’ve just checked and you are correct – Flatsome theme has issues with decimal quantities. The problem is in their custom plus and minus quantity buttons. They added custom JS code to handle it. For now the only “solution” I was able to come up with is to hide Flatsome’s plus and minus quantity buttons by adding custom CSS:
input[type="button"].button.minus,
input[type="button"].button.plus {
display: none !important;
}
Ideally if we could bring back standard HTML number input spinners it would be working fine, however I didn’t manage to do it – will be trying further – unfortunately I’m not a big expert in CSS.