technicalx
Forum Replies Created
-
More notes: this code looks like it will retry forever every 30 seconds. Is that correct? crons are every minute. Shouldn’t it give up eventually?
edit: ignore this, I found the code where I think it tries only 5 times then logs error, but since I have some IDs with 400 entries i’m not sure it’s working. Anyway probably set delay to 5 minutes instead.
public function retry( $delay = 30 ) { $job = $this; if (null == $job->attempts) $job->set_attempts(0); $job->set_attempts($job->get_attempts() + 1); mailchimp_as_push($job, $delay); }- This reply was modified 2 years ago by technicalx.
Just one webhook
- WordPress 6.5.3
- Woocommerce Version 8.8.3
- Mailchimp for WooCommerce Version 4.0.1
- Subscriptions Version 5.9.1
I’ve also noticed hundreds of scheduled
obj_identries matching each subscription ID, 402 for one I am looking at now. So now my subscriptions totals reads like this, with 7000 subscriptions and 2000 processed last week, the totals of actions have climbed vastly. So hundreds of thousands of unneeded(?) actions.BTW these actions are triggered for any subscription edit.
Scheduled Actions
All (698033) | Cancelled (324973) | Complete (356057) | Failed (9709) | Pending (7294)402 matches for below line
MailChimp_WooCommerce_Single_OrderComplete'obj_id' => 33192mc-woocommerce Non-repeatingThe logs for these are all the same,
2024-05-06T01:43:47+00:00 NOTICE action_scheduler.queue_job :: MailChimp_WooCommerce_Single_Order starts in 90 seconds :: obj_id 331922024-05-06T01:46:05+00:00 NOTICE filter :: Order 33192 was skipped by the filter- This reply was modified 2 years ago by technicalx.
- This reply was modified 2 years ago by technicalx. Reason: added webhooks count
After a big run of subscriptions this plugin has more than doubled the scheduled actions and doubled the time it takes to complete the subscription processing. Each time a subscription changes, creates an order, updates order status and updates subscription status there is more MailChimp_WooCommerce_Single_Order actions being created, it would be better if they were delayed by a day after last order edit at least and I don’t even want them for subscriptions.
- This reply was modified 2 years ago by technicalx.
Vertical column of tags next to each product row, not menu link.
The column in the product list is missing, next to categories and created date etc.
found the code.
https://plugins.trac.ww.wp.xz.cn/browser/woocommerce-product-addon/trunk/inc/admin.php
remove lines 16
maybe also remove 15, 18 where date is being ordered last, that would be controversial I guess.
Sorry I replied just before that.
It worked for a while but disconnected again.
I don’t know if the problem is Wordfence or Cloudflare or Wp2SV or Turnstile
Thanks Wp2SV App password worked (once I unblocked Wordfence firewall).
Built in WordPress App Password didn’t work while WP2SV active, but I usually have that disabled by Wordfence anyway.
What do you mean? in ManageWP I am using the Connection Key.
I have Application Passwords disabled in Wordfence, is this why I can’t connect the website to ManageWP and InfiniteWP?
Maybe I never had Lazy Loading enabled when I tested PDF Vouchers so probably not W3 fault at all. PDF Vouchers shouldn’t be using standard WordPress functions to get image tags due to potential for conflicts with caching plugins.
Forum: Plugins
In reply to: [ManageWP Worker] Plugin disables by it selfI only know that Evens Plugin is disabled when ManageWP or InfiniteWP is enabled. InfiniteWP uses the same codebase so there must be something similar in there.
To Fix by adding exclude rule.
alt="Voucher Image"Forum: Plugins
In reply to: [The Events Calendar] Pro 6.0 with 6.0 or 6.3 keeps disabling itselfI have more to add with this.
The Events free plugin is disabled when either ManageWP – Worker or InfiniteWP Client is used.
Since InfiniteWP uses ManageWP code this makes sense that they both do the same thing.
What doesn’t make sense is that I can’t replicate it on a cloned site, also cannot seem to find other people with the same issue.
I can definitely repeat the issue on two plugins now. And I’d suspect it’s Events calendar which is failing during an update step.
Whatever built in wordpress feature which causes this doesn’t bother to log anything or inform the admin there was a problem. Nothing is logged to errors or simple history.
- This reply was modified 2 years, 1 month ago by technicalx.
I know it doesn’t, but is it possible to do it?
I’d probably have to code it myself but first need to know if it is possible.
Flexible Shipping PRO
WooCommerce Advanced Free ShippingThe Flexible shipping rates weren’t being applied when my Free Shipping rules were not being used.
ie rate $10 under $1000
free shipping over $1000 set up in WooCommerce Advanced Free Shipping (not Flexible Pro because it lacks proper category rules).
Order $500, $10 shipping wasn’t applying the price but the method name was correct I think.
Also problem for me in 32.0.12. I updated to most recent 32.0.13, didn’t fix it – unless it cached something, I didn’t test that.
Switching to Legacy Field inputs fixes it.
I suggest devs switching back to Legacy by default in this plugin until the issue is properly resolved.