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 create video slider with cuncks of videos without download all videos?

 Create video slider with cuncks of videos without download all videos function custom_video_slider_shortcode() { $slider_id = 'vide...