Adding fields to Stripe in example from Book #2


#1

I integrated Stripe into one of my projects from Book #2; its awesome and works. My issues is, I wasn’t paying attention and am just now realizing I needed to collect name and address. I don’t need to validate, just collect it so its added to my account on Stripe.com. This way, I can run a zap (Zapier.com) and have the data collected and pushed into MailChimp. I have no time to go back in and re-do everything and am hoping someone might have an idea of how I can add these fields to the existing Stripe example.

Thank you.


#2

How about add those fields to your main model (don’t forget to run a migration), and when you create a customer in Stripe (the stripe.Customer.create stuff in the views), you pass those entries along? Shouldn’t take too long. :)


#3

Or I can just add data-billingAddress="true" :)

Maybe I was thinking too much :) Thank you.


#4

Ha! Awesome. :)