Haris Best Domainer Of The End-TimesTop Member VIP ☆ 10 ☆ Impact 7,727 May 11, 2018 1K views 4 replies #1 Hi guys Can we use Stripe as an alternative to PayPal? I would like to receive payments of domains sales at NamePros via Stripe. Any NamePros member using it? Please share your experience. Thanks!
Hi guys Can we use Stripe as an alternative to PayPal? I would like to receive payments of domains sales at NamePros via Stripe. Any NamePros member using it? Please share your experience. Thanks!
anantj Top Member VIP Impact 4,022 May 13, 2018 #3 Not directly. Stripe and Paypal (regular send/receive features) are not the same and equivalent. Stripe is more of a traditional payment gateway
Not directly. Stripe and Paypal (regular send/receive features) are not the same and equivalent. Stripe is more of a traditional payment gateway
Haris Best Domainer Of The End-TimesTop Member VIP ☆ 10 ☆ Impact 7,727 May 13, 2018 #4 anantj said: Not directly. Stripe and Paypal (regular send/receive features) are not the same and equivalent. Stripe is more of a traditional payment gateway Click to expand... Any example of services similar to Stripe? I am looking for a service similar to PayPal/Skrill/Payoneer from where I can withdraw any time i want
anantj said: Not directly. Stripe and Paypal (regular send/receive features) are not the same and equivalent. Stripe is more of a traditional payment gateway Click to expand... Any example of services similar to Stripe? I am looking for a service similar to PayPal/Skrill/Payoneer from where I can withdraw any time i want
frank-germany domainer since 2001 / musicianTop Member VIP Large Portfolio ☆ 10 ☆ Impact 14,616 May 13, 2018 #5 you can easily use stripe for domain payments <form action="" method="POST"> <script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="YOUR_KEY" data-name="<?php echo $domain; ?>" data-description="Domain only" data-amount="<?php echo $price; ?>00" data-currency="USD" data-billing-address="true" > </script> <input type="hidden" name="sc-name" value="<?php echo $domain; ?>" /> <input type="hidden" name="sc-description" value="domain only - no webpage content" /> <input type="hidden" name="sc-amount" value="<?php echo $price; ?>00" /> <input type="hidden" name="sc-redirect" value="http://yourdomain" /> <input type="hidden" name="sc-currency" value="USD" /> </form> Last edited: May 13, 2018
you can easily use stripe for domain payments <form action="" method="POST"> <script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="YOUR_KEY" data-name="<?php echo $domain; ?>" data-description="Domain only" data-amount="<?php echo $price; ?>00" data-currency="USD" data-billing-address="true" > </script> <input type="hidden" name="sc-name" value="<?php echo $domain; ?>" /> <input type="hidden" name="sc-description" value="domain only - no webpage content" /> <input type="hidden" name="sc-amount" value="<?php echo $price; ?>00" /> <input type="hidden" name="sc-redirect" value="http://yourdomain" /> <input type="hidden" name="sc-currency" value="USD" /> </form>