public_html/wp-content/plugins/woocommerce-ajax-cart//templates/wac-qty-select.php version 4.0.0 is out of date. The core version is 7.8.0,
]]>Hi
Please can you guide me how to hide the cart menue if the numbers of articles are 0. I guess this was a function in previous version.
]]>Hello guys
I have problems with my page and your plugin.
At the moment it is possible to add 999 (by hand) products in cart even if I have only one. The price will be generated beautifully but yeah… it leads to terrible mistakes for customers.
Could you please check it?
Thank you
Daniel
Hi after activating your plugin +- signs are added to the product quantity field in the cart but unfortunately some extra box is added as well.
Here’s the screenshot – https://paste.pics/5cc3f71b7a28fb2caf5497bcad4e62de
Theme used is Woodmart.
Hi, recently WooCommerce introduced long awaited change to orders data structure, they call it “High-Performance order storage”. The feature is opt-in now but will become switched on by default in some time. They advice plugin authors to declare compatibility or incompatibility, please see?https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility. Can you please study the information provided by WooCommerce devs and add suggested code to your plugin.
Thank you for developing “WooCommerce Ajax Cart Plugin”.
Hello,
I am using the free version of your very good Woocommerce Ajax Cart plugin and found a peculiar behaviour.
When dealing with variable products, the first variation in the list of variations in the the Edit Product page does not react to the ajax plugin. Meaning when a product is added to the cart, the page reloads to make the change. Here is a video of what i just described.
https://drive.google.com/file/d/1MyLbYUt498a8XTAaK6nTa_uFDifwP0kA/view?usp=drivesdk
Thank you
]]>Hi
after installed the Woocommerce Version 6.7.0 the automatic update after changing the cart quantity do not work.
Best regards
Benjamin
Hello!
I wanted to know, how I can disable the reset product quantity to 1 after I denied the cart notice ‘Are you sure you want to delete the products from the cart?’?
I have a product quantity plugin, so after I denied the cart notice, I just want the quantity to stay at, let’s say 50 like the quantity before.
Is it possible to set the reset to the minimum quantity?
Please help! Thanks!
]]>Hi!
I used your plugin but it didn’t work with the minus and plus buttons in my cart.
but when I add the buttons that comes with the plugin, it updates normally.
How can I resolve this?
Hi, I bought yesterday woocommerce ajax cart plugin and I forgot to take note the license key. Without license key i cannot update.
Kindly help.
]]>After I get to the cart page, the +\- buttons appear and the plugin works properly. But, if I want to add/remove product on the cart page and I push the buttons, the page refresh and the buttons disappear.
And then, the plugin work only if I write by myself the amount of the products but there are no +\- buttons.
Did you change something in the +\- buttons in the new version?
I have WordPress 5.8 and all the plugins are updated.
Please help me solve this problem.
Thank you
Hi, I am using your ajax add-to-cart pro on my website.
We know that for every add-to-cart click woocommerce send a request to the server and saves the item info in the server for that user. So when using your plugin for every plus or minus click server have to process a request and add or remove the product in cart. But when this happens very quickly, its becomes a problem.
For example, if someone in urgency and adds 15 item for a product very quickly with their mouse, then move to another product and add again 10 more item quickly server takes a massive request hit in just a few seconds.
I can’t purchase a very costly server, but use somewhat good server which can handle 5000 visitors a day. But because of quick adding of some customers website becomes very slow or crash and most of time cart don’t get updated with that users input.
Is there any solution for this? Maybe I was thinking it is possible to add a delay time for add to cart for about 200 to 500 milliseconds, so during that time however much an in-hurry customer keeps clicking, their items will get updated when they stop. The delay time is to wait and check if a custom click again, so they don’t make the server angry.
What do you think? Please let me know your feedback and hope I made sense.
Thanks
Julash
Hi Moises,
I updated a test site to WordPress to 5.7. Your plugin doesn’t work anymore with version 5.7. Are you aware of that? Are you planning an update that does work with WP 5.7?
Thanks!
Paul
]]>Hi! As you know WordPress devs finally decided to upgrade to current JQuery version in 2020. Now WP core uses latest Jquery + JQuery Migrate and we can see all the JS notices in console by default.
Your plugin has following deprecated jQuery code in ajax-cart-autoupdate-for-woocommerce-admin.js:
jQuery.fn.change() event shorthand
You can see more detailed info about this deprecation here – https://github.com/jquery/jquery/issues/3214
Although they will hardly ever remove these shorthands but this syntax is discouraged by jQuery devs.
Can you please update the code?
Hello
I installed this plugin today and searched for any threads about translation.
Well, I found one, 3 years old!
Is not even possible to translate using Loco Translate? I actually found the text string, and a few others, but after a browser refresh and trying on anonymous mode just to make sure, the button still says “Updating…” when changing product quantities.
Cheers
]]>It was working fine initially, but now its not updating now.
Please help mw
i am using woocommerce-ajax-cart for my ecommerece site .therefore i need to know all the info like user ip ,email,user name and etc…
how it is collected ,where it is stored and security given to it and etc..
info needed to write privacy policy for my woocommerece site
Hi Moiseh,
Its really a great work you keep doing man & we really appreciate that .. you always stand by our side to make your plugin compatible with every solution.
We had an issue today with the dropdown menu option, it doesn’t happen when dropdown is disabled in your plugin and work with the +/- option, but with the dropdown option activated instead of the +/- the issue happens:
Our setup that we use your plugin with activating the dropdown without the +/- option and max input value is 10.
We use the snippet below to limit some products only by their slut to have a specific qualities where is the max is 10 too but we need the drop down to have 5,10 only in that case.
add_filter( 'woocommerce_quantity_input_args', 'ts_woocommerce_quantity_selected_number', 10, 2 );
function ts_woocommerce_quantity_selected_number( $args, $product ) {
// global $product;
if ( ! is_cart() ) {
if ($product->get_slug()=="group-ticket"){
$args['input_value'] = 5; // Start from this value (default = 1)
$args['max_value'] = 10; // Maximum quantity (default = -1)
$args['min_value'] = 5; // Minimum quantity (default = 0)
$args['step'] = 5; // Increment or decrement by this value (default = 1)
}
} else {
if ($product->get_slug()=="group-ticket"){
// Cart's 'min_value' is 0
$args['max_value'] = 10;
$args['step'] = 5;
$args['min_value'] = 5;
}
}
return $args;
}
It works fine with the +/- option in your plugin if we disabled the dropdown menu, so how can we make it work too with the dropdown instead of the +/- and when this specific product so the dropdown will have the 5,10 quantities only.
Thank you so much for the great work
Stay Safe for you & your family
Best Regards
]]>Hi!
First of all, thank you for providing this plugin, really appreciate all your work on this.
I’m facing an issue where updating the product quantity changes the quantity on multiple products. Last version where it correctly changes the quantity is 1.3.13.
I am using a single product with different variations (using WooCommerce Product Add-ons) if that counts for anything.
Hi,
I hope you are safe & fine and won’t ever stop the development update for this plugin because its extremely useful
Just need to know before we update if the latest update v1.3.14 compatible with woocommerce 4.5 & wordpress 5.5 ( with its new updated jquery ) ?
Stay Safe & Best Regards
]]>Thanks for the great plugin.
If you leave the quantity column of the item displayed on the cart page blank, the item will be deleted immediately.
Isn’t it possible to display the pop-up “Are you sure you want to remove this item from cart?”, just like when the quantity is zero?
Regards,
]]>In the file common/MHSettings.php
you are using PHP syntax like <?=
which requires configuration of php.ini, namely it needs short_open_tag = On
, which is On by default but in php.ini it states that it is recommended to disable it. On our server setup we have it disabled so we had to update your plugin manually and replace <?=
with <?php echo
. See comment from php.ini:
; This directive determines whether or not PHP will recognize code between
; <? and ?> tags as PHP source which should be processed as such. It is
; generally recommended that <?php and ?> should be used and that this feature
; should be disabled, as enabling it may result in issues when generating XML
; documents, however this remains supported for backward compatibility reasons.
; Note that this directive does not control the <?= shorthand tag, which can be
; used regardless of this directive.
; Default Value: On
; Development Value: Off
; Production Value: Off
; https://php.net/short-open-tag
short_open_tag = Off
]]>
Hi,
I hope you are having a nice day and you and your family are safe.
We would like to ask gently if you can update that core file below in the next update.
/home/public_html/wp-content/plugins/woocommerce-ajax-cart//templates/wac-qty-select.php version 3.7.0 is out of date. The core version is 4.0.0,
Best Regards
]]>Hi,
I hope you are safe & fine and won’t ever stop the development update for this plugin because its extremely useful
Just need to know before we update if the latest update v1.3.10 compatible with woocommerce 4.1.1 & 4.2 ?
Stay Safe & Best Regards
]]>I installed your plug in and it work almost perfectly… the only problem is that when I add a product for the first time in the cart I still have the quantity button (up-down arrows) from my theme (I guess). Si if customer click on these arrows noting happend. If they click on the little – or + then it changes the quantity in the cart and it automatically updated the cart. So how, when I add a product to the cart, can I have only your little – and + button so customers can change quantities the first time they try.
Thank you
]]>Dear Sir,
I just bought woocommerce ajax cart plugin and I forgot to take note the license key.
Without license key i cannot update.
Kindly help.
Thanks,
Simon
[email protected]
Hi Moiseh, I have a store developed in “elementor” and I want to know if the plugin is compatible with my website, my idea is to use your plugin in this way:
At the time of clicking on the “buy button” a quick view of the product will appear with the product details, there will show the “Add to Card button”, and I want this button to add the product to the cart with AJAX, now my question is your plugin could help me with that?
Greetings awaiting your answer.
]]>Steps to reproduce:
– Create bundled product with Plugin “WooCommerce Product Bundles”
– Try to change amount on single product page
– Event listener “wacListenQtyChange” will cehck the field with class .qty and will toggle the confirm with text “Are you sure you want to remove this item from cart?”
– an amount of zero is possible and needed.
Your plugin should not listen on the class “qty”, it should listen on “.wac-quantity .qty” or something like that.
Please fix.
]]>Hi There,
Thank you for the latest update it was really awesome.
We are facing a small compatibility issue with tickera plugin: https://tickera.com/addons/seating-charts/
Simply they are a ticketing management system that works with woocommerce & they have a seating chart which is when a ticket (woocommerce product ) is marked as a seat so the quantity value in the cart page is completely disabled, but with your plugin the quantity plugin is activated even on the seat ticket (product), when i deactivate your plugin the quantity selector is hidden if the product (ticket) is a seat but if its a ticket which is not a seat the quanitity selector is still there.
So can we make your plugin to be compatible with tickera seating chart inwhich to add a role, if the product (ticket) is selected as a seat ticket not a normal ticket and they have a rule for this which i select while creating the ticket(product) which is a normal woocommerce product. so in this case the quanitity selector to be hidden too ?
Best Regards
]]>Hi There,
First of all thank you for this great plugin.
I just have some questions about the compatibility:
1. Is this plugin compatible with wordpress 5.3.2 ?
2. Is this plugin compatible with PHP 7.3 ?
3. Is this plugin compatible with latest woocommerce 3.8.1 ?
4. There is outdated code used i found in the woocommerce status i use version 3.7.1
Screenshot: https://snipboard.io/3SxTW1.jpg
Best Regards & Thank you for the great effort
]]>