#satvik-techie_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1227573592720408606
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- satvikpatel_code, 21 hours ago, 44 messages
hi again! what's your exact question? I think we had a long thread yesterday explaining a lot of things but you're just asking the exact same thing today, how can we help?
what do you mean by safe? what's the concern you have exactly?
i want to take customer cc info over phone and make payments, for that i have used moto stripe payment option, but my question is that moto payment will confidentialy make payments without leaking cc info ?
well that's your job to make it doesn't happen ๐
haahah
if you're using this you need to become PCI certified, because you will have employees of your company seeing and 'touching' raw credit card information. You're the one who needs to get that certificaton and make sure information is not leaked etc.
one more thing can i take payment without cvv number ?
for MOTO payments yes, but otherwise no. https://support.stripe.com/questions/cvc-collection-requirements
ok if i create card element then it will display cvv number , so how can i skip cvv and take paymetnt ?
you have to not use the PaymentElement, you need a more custom integration
for instance you'd use the CardNumber Element for a 'split' form https://docs.stripe.com/js/elements_object/create_element?type=cardNumber
in that case should i have use cardnumber element and pass that element in stripe.createpayment method then after i will receive payment methodid from stripe and again i will pass payment method id to server to create payment intent is that correct ?
we've mostly deleted all the docs for using this though unfortunately
yeah something like that
in above link there is no option to hide cvv
you hide the CVC by not creating a CardCVCElement
let me check with creating seperate element ( cardnumber , card expiry , card type )
just a CardNumberElement and CardExpiryElement
gotcha
yes that is what you have to do, use the multiple split elements
I can't find any guide for doing it anymore(but it does still totally work), because we really want everyone to use PaymentElement