import user profile to wp_usermeta
-
Hi,
Is the plugin possible for me to import user profile to wp_usermeta?
https://wordpress.org/plugins/import-users-from-csv-with-meta/
-
i1c2z3y4l5,
Sorry I didn’t understand your question.
Tell me.
Hi,
I have a list of customer data which contain user profile like name, emails, billing info and shipping info. i want to transfer it to my new wordpress database. the wordpress database wp_user only contain basic user info. but the billing info and shipping info is at wp_usermeta. Does your plugin support importing of billing info and shipping info to wp_usermeta?
Ian
Are you using WooCommerce?
yes
You can use the meta data used by WooCommerce and by WordPress:
‘username’,
‘user_email’,
‘first_name’,
‘role’,
‘last_name’,
‘nickname’,
‘display_name’,
‘description’,
‘billing_first_name’,
‘billing_last_name’,
‘billing_company’,
‘billing_address_1’,
‘billing_address_2’,
‘billing_city’,
‘billing_postcode’,
‘billing_country’,
‘billing_state’,
‘billing_phone’,
‘billing_email’,
‘shipping_first_name’,
‘shipping_last_name’,
‘shipping_company’,
‘shipping_address_1’,
‘shipping_address_2’,
‘shipping_city’,
‘shipping_postcode’,
‘shipping_country’,
‘shipping_state’The wp_usermeta table columns goes with meta_key and meta_value. so i need to name meta_key as ‘biling_first_name’ and meta_value as ‘john’. and so on. it doesnt work well with your plugin. can you give me a sample of how you write in the csv file so that the wp_usermeta table can read it properly?
You have to use the titles I have told you as columns and in each row you have to fill the data for every user.
Hi,
Thanks for the replies, finally manage to make it work. But i cant import in user accounts which has the same email but different username.
i1c2z3y4l5,
In WordPress the same email cannot be used for different users.
Anyway, this plugin is compatible with https://wordpress.org/plugins/allow-multiple-accounts/ try to use it with it and surely you could solve your problem.
Thanks.
Hi,
Thanks for the help. problem solved!
Ian
Perfect π
The topic ‘import user profile to wp_usermeta’ is closed to new replies.