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 add re-captcha v3 on all Elementor forms using coding?

 Add re-captcha v3 on all Elementor forms using coding add_action('wp_footer',function(){     ?> <script src="https://www...