Reputation: 43
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.
Upvotes: 1
Views: 9849
Reputation: 271
It's actually wp_postmeta
. Just filter required order ID in post_id
column.
Upvotes: 2
Reputation: 254182
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…
Upvotes: 2