How to find the woocommerce orders in db
- find db name in by filezilla in website directory wp-config.php filק
- enter cpannel/phpmyadin
- point on the db
- enter SQL tab
- enter to following code and press "go"
select * from wp_posts where post_type = 'shop_order' order by post_modified desc; - now you see the list of orders by date
sources:
- wordpress.stackexchange - SQL Query for getting all posts in their latest revised state
- stackoverflow- where is a woocommerce order placed in wordpress database