03 January 2020

How to remove spinners from number field(quantity fields ) in woocommerce?

WooCommerce quantity fields without spinners



/* Disable input[type=number] buttons until the world is ready */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    display:none;
}


OR




<input type="text" pattern="[0-9]*" ... />

No comments:

Post a Comment

How to fetch instagram posts data?

Fetch Instagram posts data by pasting this code in browser console. (() => { /* ====================================================...