Plugin info

Total downloads: 8,974
Active installs: 300
Total reviews: 3
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 4/28/2020 (2073 days ago)
Added to WordPress: 11/12/2015 (10 years old)
Minimum WordPress version: 4.1
Tested up to WordPress version: 5.4.17
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2073 days ago • 3 reviews

22/100

Is WooCommerce Quantity Increment abandoned?

Possibly abandoned (last update 2073 days ago).

Compatibility

Requires WordPress: 4.1
Tested up to: 5.4.17
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

SMNTCS Quantity Increment Buttons for WooCommerce
Rating 4.5/5 (20 reviews)Active installs 3,000
Flexible Quantity – Measurement Price Calculator for WooCommerce
Rating 4.3/5 (8 reviews)Active installs 2,000

Description

WooCommerce uses number inputs for the cart quantities by default, as most browsers now support .

However, you may want to have JavaScript powered inputs if you want greater control over appearance. Simply install and activate this plugin to do so.

It optionally includes a Number Polyfill, which is a polyfill for implementing the HTML5 element in browsers that do not currently support it.

To include this, add the following code to your theme’s functions.php file:

add_action( 'wp_enqueue_scripts', 'wcqi_enqueue_polyfill' );
function wcqi_enqueue_polyfill() {
    wp_enqueue_script( 'wcqi-number-polyfill' );
}

Installation

  1. Upload woocommerce-quantity-increment to the /wp-content/plugins/ directory or search for ‘WooCommerce Quantity Increment’ from Plugins > Add New.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

I don’t want to use the plugin styles as it looks bad with my theme

You can add the following to your functions.php file:

add_action( 'wp_enqueue_scripts', 'wcs_dequeue_quantity' );
function wcs_dequeue_quantity() {
    wp_dequeue_style( 'wcqi-css' );
}

This will dequeue the plugin’s stylesheet.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.1.1

  • Removed original author from contributors

1.1.0

  • Updated to work with the WooCommerce 2.6 cart ajax script.

1.0

  • Initial Release