Skip to content

Instantly share code, notes, and snippets.

@75nineteen
Created October 16, 2015 14:00
Show Gist options
  • Save 75nineteen/7ff42d007317aefe11f5 to your computer and use it in GitHub Desktop.
Save 75nineteen/7ff42d007317aefe11f5 to your computer and use it in GitHub Desktop.
Delete all scheduled followups for Follow-up Emails
DELETE FROM {$wpdb->prefix}followup_email_orders WHERE is_sent = 0
@75nineteen
Copy link
Author

Find your database prefix

  • Replace prefix with your prefix for your database.
  • The default is wp_ - can be found in wp-config.php.

Make sure is_sent = 0

  • If is_sent = 1 then all history and reporting will be lost

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment