axcho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Coupon usage limit per user not workingYes, I’d hope they can’t leave an issue like this for too long! It strikes me that WooCommerce would be a much more solid competitor to Shopify and other commercial platforms if they didn’t introduce new bugs in updates so frequently. This is definitely not the first time something like this has happened. :/
Forum: Plugins
In reply to: [WooCommerce] Coupon usage limit per user not workingDo you remember which update introduced the bug? Maybe I can track down the change that broke the coupon code.
Forum: Plugins
In reply to: [WooCommerce] Coupon usage limit per user not workingSame problem here. It seems the “usage limit per user” is being treated as a total “usage limit”, which is a bug that must have been introduced in a recent update. My customers have started notifying me of this issue.
I can’t seem to track it down in the code either. Please fix soon!
Forum: Themes and Templates
In reply to: [Storefront] Problem with Star RatingThanks Stuart! Looking forward to the next update.
Forum: Themes and Templates
In reply to: [Storefront] Problem with Star RatingNo, unfortunately. I’ve just reported the issue here as well: https://github.com/woothemes/storefront/issues/278
Forum: Themes and Templates
In reply to: [Storefront] Problem with Star RatingSeveral of my customers have reported the same issue. :/
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Discount removed at checkout!So glad to hear it’s working! ?? I haven’t been able to get a hold of Rene Puchinger, the plugin author, but hopefully he’ll update with the fix soon.
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Discount removed at checkout!I think I’ve found a fix. I was able to reproduce the bug just like @stephen.loera – it happened whenever I created a new account during checkout. But I’ve managed to fix it on my own site.
I’ve submitted a pull request to the author of the plugin, so hopefully he’ll update it soon.
In the meantime, you can manually change your
woocommerce-bulk-discount.php
to use this updated code for theaction_after_calculate
function:// line 437 public function action_after_calculate( WC_Cart $cart ) { if ( $this->coupon_check() ) { return; } if ( !$this->bulk_discount_calculated) { return; } if ( sizeof( $cart->cart_contents ) > 0 ) { foreach ( $cart->cart_contents as $cart_item_key => $values ) { $_product = $values['data']; if ( get_post_meta( $_product->id, "_bulkdiscount_enabled", true ) != '' && get_post_meta( $_product->id, "_bulkdiscount_enabled", true ) !== 'yes' ) { continue; } $values['data']->set_price( $this->discount_coeffs[$this->get_actual_id( $_product )]['orig_price'] ); } $this->bulk_discount_calculated = false; } }
Hope it helps!