1

I am developing the phonegap app for woocommerce store, Now I am stuck. I need to create order manually. For that reason, I want to know where is the taxes for particular order is stored? Also where is the shipping method for particular order in database stored?

Please help.

Steve P
  • 162
  • 1
  • 11
Sanjay Rathod
  • 1,083
  • 5
  • 18
  • 45

1 Answers1

1

Both the taxes & shipping detail for a particular order is stored in table: woocommerce_order_itemmeta.

You can identify taxes & shipping calculated on a particular order by checking the order_item_id column of any entry.

Make sure you have enabled Shipping/Taxes modules under the WooCommerce settings properly.

Also, you can check what type of info other tables store here.

David Wolf
  • 1,400
  • 1
  • 9
  • 18
Domain
  • 11,562
  • 3
  • 23
  • 44