Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author Javier Carazo

    (@carazo)

    i1c2z3y4l5,

    Sorry I didn’t understand your question.

    Tell me.

    Thread Starter Anonymous User 12711743

    (@anonymized-12711743)

    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

    Plugin Author Javier Carazo

    (@carazo)

    Are you using WooCommerce?

    Thread Starter Anonymous User 12711743

    (@anonymized-12711743)

    yes

    Plugin Author Javier Carazo

    (@carazo)

    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’

    Thread Starter Anonymous User 12711743

    (@anonymized-12711743)

    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?

    Plugin Author Javier Carazo

    (@carazo)

    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.

    Thread Starter Anonymous User 12711743

    (@anonymized-12711743)

    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.

    Plugin Author Javier Carazo

    (@carazo)

    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.

    Thread Starter Anonymous User 12711743

    (@anonymized-12711743)

    Hi,

    Thanks for the help. problem solved!

    Ian

    Plugin Author Javier Carazo

    (@carazo)

    Perfect πŸ™‚

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘import user profile to wp_usermeta’ is closed to new replies.