Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paypal Buy now button without shipping anything?

I have a buy now (pay now) button but when a user pays, I'll get a notification that the user pays but i can't get the money unless i shipped the item to the User.

I don't have items to be shipped! I want the button to be something like the donation button, if someone pays i get the money immediately.

But I don't want DONATIONS, I am actually using the pay now and NOT the buy now button so there's nothing to buy, but you pay for something like a VIP service

I don't want to use the subscription button because I want the user to pay as many times as he wants, the more times he pays the more service he gets.

So how can i get the money from the pay now without having to deliver any items?

Update

@BillyMoon I am actually giving something but not a physical item you know - i don't know how to explain it, like when you buy chips from facebook zinga poker game, the user can pay many times and get more chips.

or like when you pay on facebook to advertise something there, you can pay many times if you want to have many ads, I can give you guys many examples!!

Haven't you played any games, or paid to any service, where you get something, but not a physical item?

@Robert

I host a competition on my site, if you pay 3$, you'll get a chance to enter the competition, if you pay twice you'll get more chance of winning, you can subscribe to my site without paying but you won't be entering the competition and you won't have a chance to win (i don't want to give more details until I launch the site) but you see the main idea

I was testing the buy now button so i made the value of it 0.10$ (which is the minimum value possible) just for testing coz i am from lebanon, not allowed to use and don't know how to use sandbox

so i paid twice, just to see if everything is working so i should receive 0.20$ right?

i go to my paypal, I can see that i paid twice but the money wasn't added to my paypal let me show you, I had 0.86$ before i paid to this account. but this amount didn't increase enter image description here

Although I received the payments, my paypal balance is still the same

like image 658
Lynob Avatar asked Nov 20 '11 16:11

Lynob


People also ask

Can I customize PayPal button?

PayPal button The default value is gold , but you can also set it to: black , blue , silver , or white . Overrides the shape of the button. The default value is softEdges , but you can also set it to hardEdges or rounded . Adds a label next to the button logo.

Are PayPal buttons free?

You must have a PayPal Business or PayPal Premier account to create payment buttons. There are no setup fees or cancellation fees. See PayPal Merchant Fees for information about per-transaction fees. Use payment buttons in any country where PayPal is accepted.

What happens when you click pay now on PayPal?

Paying with PayPal When the buyer is ready, they click Pay Now. The payment is authorized and PayPal displays a confirmation page. Finally, PayPal sends the buyer an email to confirm the transaction.

What is the benefit of using PayPal buttons?

Smart Payment Buttons by PayPal are designed to improve the checkout experience and improve checkout conversions. With this integration, you can give customers the option to pay with PayPal, Venmo, and major credit cards and debit cards - on almost any device - when they checkout with PayPal.


1 Answers

Turn off shipping address collection by setting no_shipping to '1'.
This will remove the 'Print shipping label' option, and not include the shipping address for you.
A billing address will still be required on the credit card entry screen (obviously).

Set <input type="hidden" name="no_shipping" value="1">

like image 180
Robert Avatar answered Sep 20 '22 06:09

Robert