Hello @iamthefixer,
I have wc_admin_unsnooze_admin_notes action too in the pending scheduled action which appears every so often. What does the action do and can I cancel it OR stop it if it is not necessary?
Some of the notices that WooCommerce Admin displays can be snoozed (“remind me later” functionality). The wc_admin_unsnooze_admin_notes
action is recurring, so Action Scheduler recreates the job each time it completes. You should be able to delete or cancel the job from WooCommerce > Status > Scheduled Actions.
After an order is made on our website, wc-admin_import_order and wc-admin_import_customers are set as pending actions in Woocommerce > Status > Scheduled Actions….Why?
Can these actions be run by Woocommerce Admin automatically!!??
WooCommerce Admin will schedule these customer and order update actions when you receive new orders – these update the tables used for Analytics.
Pending jobs should be run automatically. If your pending actions never complete, that indicates there is a problem with WP-Cron on your system. Using Crontrol, do you see a action_scheduler_run_schedule
hook scheduled to run every minute when you go to Tool > Cron Events?
If you’re not worried about troubleshooting WP-Cron in your testing environment, you can manually trigger the action_scheduler_run_schedule
event from Crontrol or use wp cli
to run pending actions: wp action-scheduler run
.