1

I would like to know, what database table is WooCommerce using for the Billing Address for each user?

I really need to know, because I need to import users from another database. Thanks.

LoicTheAztec
  • 229,944
  • 23
  • 356
  • 399
Eson Roxas
  • 43
  • 1
  • 10

2 Answers2

2

The table used for customers billing address is 'usermeta'.

To import users from an other database, you need the data from 'users' and 'usermeta' tables…

LoicTheAztec
  • 229,944
  • 23
  • 356
  • 399
2

It's actually wp_postmeta. Just filter required order ID in post_id column.

Mike Shema
  • 261
  • 3
  • 5