Skip to content
Advertisement

Allows decimal float numbers in WooCommerce form field type number

I am making an input form in WooCommerce using a function called woocommerce_form_field() for an input type number field like below:

JavaScript

Now I would like to be able to allow decimal float numbers to be inputed in this field. Is it possible? What should I do?

Advertisement

Answer

You need to use 'custom_attributes' argument with attribute 'step' set to 'any' as follows:

JavaScript

Tested and works.

Note: 'min' argument define the starting allowed value

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement