Moving over to the new Checkout solution I have run into the following problem.
I use Stripe to collect payments for members in a small association, and this means that with the legacy Checkout that combines client and a small bit of server-side logic I can process payments on members very easily. I am able to get an overview of all the members who have paid in the Dashboard > Customers section because the "Cardholder name" is included as the name of the person who pays. I need that name to check which members have paid their membership.
Moving over to the new clinet only checkout (which I would love to use, i.e. getting rid of the server logic) I no longer see the name of the person who pays in the Dashboard.
Even when I enable `billingAddressCollection` in the client (billingAddressCollection: 'required') on the parameter object of `stripe.redirectToCheckout` the data is not saved in the customer data that I see on the Dashboard.
This screenshot from my test dashboard illustrates what I want to achieve.
Is that possible with a client only Checkout solution?