So,
I am building a website in react using Wordpress headless server with WooCommerce plugin.
I have found that to create a new customer, you have to use the WooCommerce API:
But this is only creating a new customer.
What I need is to let the user to be able to register its account through a signup to become a customer. So I was planning to use: /
So my use case is to have the signup pop-up coming up and entering the name, password and email and then it create an account on Wordpress and the user become a customer for WooCommerce.
Do I have to do :
1- Create an account with Wordpress API to register the new user.
2- Create a customer using the WooCommerce API
My concerns is that how do I make sure that the user newly created is also a new customer. I do not want to have 2 differents user.
Regards Sebastien
So,
I am building a website in react using Wordpress headless server with WooCommerce plugin.
I have found that to create a new customer, you have to use the WooCommerce API: https://woocommerce.github.io/woocommerce-rest-api-docs/#create-a-customer
But this is only creating a new customer.
What I need is to let the user to be able to register its account through a signup to become a customer. So I was planning to use: https://wordpress.org/plugins/wp-rest-user/
So my use case is to have the signup pop-up coming up and entering the name, password and email and then it create an account on Wordpress and the user become a customer for WooCommerce.
Do I have to do :
1- Create an account with Wordpress API to register the new user.
2- Create a customer using the WooCommerce API
My concerns is that how do I make sure that the user newly created is also a new customer. I do not want to have 2 differents user.
Regards Sebastien
If you create a new customer using the WooCommerce REST API, it will create a new WordPress user of the role Customer. Email is unique, a new customer cannot be added if his/her email is used by another WordPress user whether a customer or not. I tested that using API.
Regarding password, I still did not receive an email with it. I have my own WP deployment, and still no email is working.
What I need to look for next is how to authenticate a customer using the API to grant my customers thought my app.