Hello Niels,
I do use you the plugin in conjonction with the Woo Min/Max Quantities plugin (https://woocommerce.com/products/minmax-quantities/), since it is declared as compatible with it. Thanks for your work
But i’ve an issue with step controls (Group of):
Ex : my product has a step value of 5 (group of 5)
I did not test with other plugins (ex: woo-min-max-quantity-step-control-single).
How do you see this in case of Group of Quantities (steps) ?
Thanks in advance for your help
]]>Hello,
can you help me how to correct position of + and – button. Now + is above qty box and – below, i would like to be + before and – after qty boy in same line.
Thanks!
]]>I have minimal plugins installed and this plugin has no effect on my page.
https://wordpress-679211-3512781.cloudwaysapps.com/product/zoom/
On Staging:
username: reekooz
password: Reekooz1
Not sure why, but I’d really like to use the high performance order storage feature in WooCommerce but getting the error that this plugin isn’t compatible.
Is there any scope to make it compatible so we can use the plugin and new woocommerce feature?
Thanks in advance.
]]>Do you have a pro version that works with: Plugin WooCommerce TM Extra Product Options. ?
Bst. Rgds.
Alex
Dear sir, madam,
The quantity buttons on the product page are currently displayed minus, plus and then the quantity box. If I remember correctly, previously the buttons on the product page were displayed minus, quantity box, plus. On the shopping cart page the buttons are displayed correctly.
How can the buttons on the product page also be displayed minus, quantity box, plus? I have installed version 2.2 of the plugin.
Any help is greatly appreciated. I added a link to my website (product page). If any additional information is needed, please let me know.
]]>Good Morning,
We’ve been utilizing the plugin since the inception of the site but during the last round of updates, the arrows that display inside of the boxes are not visible. The increment boxes still display and function. Please advise. It is sitewide, including the cart and product pages.
]]>Instead of showing as – QTY + the buttons are showing as
–
QTY
+
on our single product page
and i cant’ seem to figure out why?
On PC Plus and Minus buttons are placed before quantity instead of being one in the right side and the other on the left side.
On Mobile (Huawey P20 Pro and many other different mobiles) Plus button Minus button is inline but Plus button is under Quantity box.
]]>Hello:
I have installed the plugin and i′ve noticed that something is happening on mobile.
Buttons are taller (not square) and “plus” button isn′t inline with “minus” and “quantity box” but under “minus” button.
On PC and tablet is perfect.
I have this issue on mobile only
]]>Hi
Does this only work on the product and cart page?
Cheers
]]>I am trying to override the template file.
In my child-theme I created the folder structure:
woocommerce/global/quantity-input.php
I changed the template but I do not see anything on the front end.
Basically I am trying to change the <input type="button">
to the newer <button>
element.
Any ideas as to why the override would not be read, there is no cache on the site and if I manually change the plug-in code it changes on the front end.
]]>Hi
I use this plugin in my website, but I realize that here’s a small problem
If for example I put stock quantity 5 to a product
the Quantity Increment Buttons does not stop at 5
visitor can add more that 5 items to their cart
How do I set the + button to stop at the stock quantity for each products ?
thank you
]]>Changing the shipping method in checkout increases the step for increasing/decreasing the amount by one. Going from 1 -> 2 -> 3 and so on for every time the shipping method is changed.
]]>
the plugin doesnt work anymore?
i tried few times to install it in my website and i cant see the cart page buttons
https://woocommerce-770803-2623548.cloudwaysapps.com/cart/
Hi
I have same problem like others with quantity increment/decrement. It does in multiple of 2. (Like 1,3,5)
https://www.ads-software.com/support/topic/increase-or-decrease-in-multiples-of-2/
Please note this works perfect on version 1.23, but not on the latest version of your plugin.
Can you please release a new version with the fix.
]]>May I know .. How to Add Quantity Increment To Add To Cart Buttons That Are Not in Product/Cart Page?
As you know, we can make a custom page with and add a add to cart button using shortcode. The quantity increment does not appear there. How can we make it appear? Thanks.
]]>Hi, i’m trying to remove with css the space between the boxes of minus, quantity and plus but i’m not able to do this. Any help?
The page isn′t public yet. Thanks in advance. Great plugin
]]>How to disable on the product card?
Image
Hi there,
The plugin seems to have a bug where the quantity counts up or down in multiples only so you can only add 2,4,6,8 items and sometimes 1,3,5,7 rather than 1,2,3,4 etc?
I’ve had to disable on the live site as it’s preventing people from buying things.
Thanks,
Charlotte
hello,
im trying to make bigger the = and + and not the buttons, how can i do that?
ex. from – to —— ‘without the spaces’ ??
Thanks
]]>Hi,
The selector is skipping by two per default? Why is that? The products are not set to this? Any fix?
]]>Hello,
the plugin works only on the cart page but not on the product pages or in all the page where I used “add to cart” DIVI module
Many thanks
]]>do not work on the cards
]]>Hi, I ve this plugin on many of my websites. The last update broke this plugin. When the Qty Field its more than 1 and you press the “add to cart” button, you will always add no more than one item to the cart.
For example:
If the number 2 appears in the quantity field and I press “Add to cart”, the cart will add only 1 item. So, for example, if i want to buy two apples, i will need to press two times the button “add to cart” cause the qty field doesn’t respect the number that figure there.
Please we need a solution cause its very important for our web sites.`
]]>How i change minus plus next to each other?
Now i have in product page:
https://kerovsky.pl/files/chrome_5iydJNVSg9.png
In cart is ok
]]>When using variations with stock management, the max limit of increase should be refreshed.
On every change of variation, the limits should be updated.
Variation selector - on change - call function render()
OR better to get the max value with every click
// Increase quantity.
if ( add ) {
add.addEventListener( 'click', function() {
max = element.querySelector( 'input.qty' ).getAttribute( 'max' );
if ( max ) {
var temp = parseInt( qty.value ) + parseInt( step );
if ( temp <= parseInt( max ) ) {
qty.value = temp;
}
} else {
qty.value = parseInt( qty.value ) + parseInt( step );
}
updateCartButton();
}, false );
}
]]>
There’s an error that doesn’t allow you to add the maximum number of items in stock.
If the stock is 12 items, then you can only increase the quantity till 11.
if ( max ) {
var temp = parseInt( qty.value ) + parseInt( step );
if ( temp < parseInt( max ) ) {
qty.value = temp;
}
}
should be
if ( max ) {
var temp = parseInt( qty.value ) + parseInt( step );
if ( temp <= parseInt( max ) ) {
qty.value = temp;
}
}
]]>
Hi there,
The plugin has stopped working on product pages after the recent update. The buttons don’t do anything when clicked?
Thanks,
Charlotte
Hi there! Thank you for a great plugin!
Just wondering can you please tell me what code to use to disable code everywhere except the Cart and Checkout pages?
I just need increment buttons on a Cart and Checkout pages on a website, not on the product page or product category pages, or anywhere else.
Greatly appreciate your contribution to WP!
Regards