Advertisement
Guest User

WooCommerce Admin SQL Commands to Delete Database Entries

a guest
Dec 31st, 2019
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Delete WooCommerce Admin Importer Scheduled Action Lines:
  2.  
  3. DELETE FROM `wp_posts`
  4. WHERE `post_type` = 'scheduled-action'
  5. AND `post_title` = 'wc-admin_import_order'
  6.  
  7. Delete WooCommerce Admin "Unsnooze Admin Notes" Lines:
  8.  
  9. DELETE FROM `wp_posts`
  10. WHERE `post_type` = 'scheduled-action'
  11. AND `post_title` = 'wc_admin_unsnooze_admin_notes'
  12.  
  13. Delete WooCommerce Admin "Action Scheduler" Comment Logs:
  14.  
  15. DELETE FROM `wp_comments`
  16. WHERE `comment_author` = 'ActionScheduler'
  17. AND `comment_type` = 'action_log'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement