moiseh
Forum Replies Created
-
Makes sense!
I’ve done this and updated the plugin.
Hi, i hooked into wordpress delete link when quantity changes to zero, as you say.
Please re-download this plugin to test.
Thanks for the feedback ??
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] WooCommerce 3.0Hi, it’s compatible with 3.0, the online demo uses this version (3.0.1).
Hi bennygill
I appreciated your thoughts, i guess that this make sense.
But i think that many users dont have updated their woocommerce to the newest versions, so they don’t have the “Undo” funcionality.
For this reason i added the configuration ~2 weeks ago on this plugin, to make the confirmation optional:
“Show user confirmation when change item quantity to zero”Hope that this helps to explain, and sorry my bad english,
ThanksForum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Drop down menuI added the “0” option on the Select, really it’s make sense
But i keep the default value of 1 because it’s a woocommerce default so i’m not sure to change this.
Thanks for the feedback and keep me informed.
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Drop down menuHi bennyngill
I’ve extended the Quantity select to show on product page.
Fixed the bug issue also.
You have great ideas, thanks for contribution.
Very great solution ??
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] The plugin does not have a valid header.Hi, i tested in my wordpress and unfortunately couln’t reproduce this.
I re-uploaded the plugin, please try to download again.
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Problem with update (hide total)Closing this support because other users not related this issue. Reopen or answer here if needed.
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Its not working at allClosing this support because other users not related this issue. Reopen or answer here if needed.
Hi
I guess that you can use the ajaxStart and ajaxStop jquery handlers to intercept when AJAX has processing.
First, you need to add a class to identifier your link, eg.:
<a class="secure-checkout-link" href="https://elementpaints.com/checkout/">Proceed to Secure Checkout</a>
Here the example Javascript/JQuery code to disable link click (not tested):
jQuery(document).ready(function($){ $(document).ajaxStart(function(){ // remove the href on link $('.secure-checkout-link').attr('href_temp', $('.secure-checkout-link').attr('href')); $('.secure-checkout-link').removeAttr('href'); }); $(document).ajaxStop(function(){ // back href on link $('.secure-checkout-link').attr('href', $('.secure-checkout-link').attr('href_temp')); }); });
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Drop down menuOk nice tip!
I added a selector, by the default it’s not enabled so you can enable under Woo Ajax Cart settings.
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] Disable + and – signOk i added a settings page to disable this.
Thanks
It’s because you have PHP version below 5.3.
I added support for 5.2, please re-download the plugin.
Thanks for the feedback!
Forum: Plugins
In reply to: [WordPress Reservation System Plugin] Single item web page not working!Hi, please try to re-flush permalinks:
– Go to Settings -> Permalink Settings
– Change the radio to another value (eg. swith from “Post name” to “Plain”)
– Save
– Change to original value (eg. back to “Post name”)
– SaveI changed the permalinks on the demo link and worked.
Please tell me if it’s solved the problem.