Uncategorized

Deleting scheduled actions

From time-to-time, you may need to bulk delete a set of actions scheduled with Action Scheduler. This can be done using the following SQL queries: Delete Schedule Actions DELETE FROM `wp_posts` WHERE `post_type` = ‘scheduled-action’ AND `post_title` = ‘hook_name’ Delete Orphaned Meta The above query will delete scheduled actions but not their associated meta, so […]

Read More

Changing Currency for WooCommerce Subscriptions

When a store with subscriptions changes currency type, the already-existing subscriptions will maintain their original currency. This is because the currency type is saved as a piece of metadata for each individual subscription. Example: Due to Brexit, a store needs to change from Euros to Pounds. Find and edit one of the subscriptions in WooCommerce […]

Read More