>
Download This Plugin | |
Download Elegant Themes | |
Name | WooCommerce Quantity Increment |
Version | 1.0.0 |
Author | WooThemes, Bryce Adams |
Rating | 100 |
Last updated | 2015-02-17 08:18:00 |
Downloads |
1234
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WooCommerce Quantity Increment plugin added 2 bytes of resources to the Home page and 3 bytes of resources to the sample Post page.
WooCommerce Quantity Increment plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WooCommerce Quantity Increment plugin ads no tables to your Wordpress blog database.In WooCommerce 2.3, the quantity increment buttons have been depreciated, as most browsers now support <input type="number" />
.
However, you may want to keep them. Simply install and activate this plugin to do so.
It optionally includes Number Polyfill, which is a polyfill for implementing the HTML5 <input type="number">
element in browsers that do not currently support it.
To include it, add something like this to your functions.php
:
add_action( 'wp_enqueue_scripts', 'wcqi_enqueue_polyfill' );
function wcqi_enqueue_polyfill() {
wp_enqueue_script( 'wcqi-number-polyfill' );
}