#theglobe - customer fields

1 messages · Page 1 of 1 (latest)

remote gulch
#

So whatever is collected and put in there

last oriole
#

we can't divide them?

remote gulch
#

It's just one field. Up to you how you want to pass it. You can have 2 separate fields on your site for first and last and then combine them into 1 field and pass that into stripe

#

And you can separate them out later too if need be

last oriole
#

I need to get from Stripe and pass to my site divided

remote gulch
#

Well you can just use string manipulation to divide it

last oriole
#

Ok I will check thanks

remote gulch
#
name_list = name.split(" ")
first_name = name_list[0]
last_name = name_list[1]
#

Simple solution in python assuming you're only ever collecting a first and last name

last oriole
#

Awesome. thanks

remote gulch
#

No problem