Corey McKrill
Forum Replies Created
-
Forum: Plugins
In reply to: [Action Scheduler] Database tables not removed after uninstallHi @nestormarius, WooCommerce is a plugin that includes Action Scheduler as a library. But there are also lots of other plugins (not just from Automattic) that also use it in this way. So it’s hard to say for sure where those tables are coming from, but I would recommend being cautious about deleting them in case you still have an active plugin that is utilizing Action Scheduler.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce AnalyticsHi @chrysalflowerfood, when did you notice this change? Could you provide a system status report?
Forum: Plugins
In reply to: [WooCommerce] Strange behaviour with shipping cost calculationSo far I haven’t been able to replicate this with just WooCommerce. Let me know if you figure out a way!
Forum: Plugins
In reply to: [WooCommerce] Strange behaviour with shipping cost calculation@schnuffi That’s great! I’m so glad it now seems to be working correctly.
It does seem like there’s potentially a bug in here somewhere, but I’m not quite sure where it is.
So it finally seems, the problem was setting up 2 shipping methods consecutive within 1 step in the shipping zone? Because that was the only thing I altered in comparison to initially setting up shipping zones / methods!
I will try setting up a new store, with only the WooCommerce plugin and see if I can replicate this, but I’m not sure I completely understand what happened here. Are you saying that the order that the shipping methods were created made a difference?
Hi @jonaszeu, for these orders where an out-of-stock product was successfully purchased, are there any commonalities in the details? Or are there any order notes that might give a hint about what happened?
Forum: Plugins
In reply to: [WooCommerce] Delivery Method Issue@gr7tecnologia I noticed in the browser console that there is a JavaScript error on the checkout page:
XHR POST
https://clickbrink.com.br/?wc-ajax=update_order_review
[HTTP/2 500 122ms]…which could indeed be related to the shipping section not loading. The
500code means it’s an internal server error, which makes me think there might be a back end error happening that is preventing that request from completing correctly. If you go to WP Admin and go to WooCommerce’s Logs section (WooCommerce > Status > Logs), what sort of logs do you see there (can you take a screenshot perhaps)? Anything about fatal errors?Forum: Plugins
In reply to: [WooCommerce] Strange behaviour with shipping cost calculationInteresting. Ok, a couple more questions:
- Do these unqualified orders that all got free shipping have anything else in common? Are they all from the same country (presumably in one of the two where you set up that option)? Were the products in the orders all on sale? Did they apply a coupon? Something else?
- Anything in the orders notes to suggest how this could have happened? Was the total order amount originally higher and then it got modified?
Since you have the staging site and it sounds like you’ve been able to replicate the issue there, my recommendation would be to try disabling all other plugins and see if you can still replicate. If so, then there could be a bug in WooCommerce and we’d love to know the steps to replicate it so we can fix it!
@krishnavineet thanks, that sample helped, and I think I figured out the issue. The URLs for your images don’t include the protocol at the beginning, i.e. they are just
//decorninja.in/cdn/shop/.... I tried changing all of these to prependhttps:and the import of the sample products then worked for me. Give that a shot and let me know how it goes!Hi @krishnavineet, is this CSV file generated from using the Export function within WooCommerce, or by some other means? Do you have a small sample (with fake products if you want) that ends up causing the distorted URLs that you could share here?
Forum: Plugins
In reply to: [WooCommerce] Delivery Method IssueHi @gr7tecnologia, could you share a link to your website so we can go and see this behavior? Also, could you please share your System Status Report so we can see what other plugins/extensions might be involved? Go to WooCommerce > Status, click “Get system report”, click “Copy for GitHub”, and then paste the results in a reply here.
Forum: Plugins
In reply to: [WooCommerce] Strange behaviour with shipping cost calculationHi @schnuffi that is certainly strange behavior! I’m wondering if there are any other plugins or WooCommerce extensions involved that may be influencing this. Could you add your System Status Report here? Go to WooCommerce > Status and click “Get system report” and then click “Copy for GitHub” and paste the results here.
I’m also curious what your shipping settings look like. Does this only happen for a particular shipping zone or class?
Forum: Plugins
In reply to: [WooCommerce] Fatal errorHi folks, we have found a workaround for this issue.
- Download a fresh zip of WooCommerce 9.0.0 from the ww.wp.xz.cn page
- In WP Admin, go to Plugins, and click “Add New Plugin”. Then click “Upload Plugin”.
- Choose the zip file you just downloaded and click “Install Now”
- After it finishes uploading the zip, you’ll see a message “This plugin is already installed”. Click the “Replace current with uploaded” button so that the fresh copy is used.
We are still investigating why this happened and why it only seems to affect Litespeed servers…
Forum: Plugins
In reply to: [WooCommerce] Fatal errorHi @daniel238 (or others on this thread), could you post a System Status Report? If you go to WooCommerce > Status and click “Get report” and then click “Copy for GitHub” you can paste the results here.
Forum: Plugins
In reply to: [WooCommerce] Checkout broke with 8.3.0Rather than changing the code in the WooCommerce plugin (which would get overwritten when you update), here’s a code snippet that sets
$in_footertotrue.Forum: Plugins
In reply to: [WooCommerce] Remove “ Process your orders on the go. Get the app”Shoot, sorry, there was a typo in the code snippet. This one should work:
/** * Disable messages about the mobile apps in WooCommerce emails. * https://ww.wp.xz.cn/support/topic/remove-process-your-orders-on-the-go-get-the-app/ */ function mtp_disable_mobile_messaging( $mailer ) { remove_action( 'woocommerce_email_footer', array( $mailer->emails['WC_Email_New_Order'], 'mobile_messaging' ), 9 ); } add_action( 'woocommerce_email', 'mtp_disable_mobile_messaging' );(Just remove the
()after$mailer.)