Drop down options in payment button - paypal

I am adding paypal payment button to my web site. And I require to have drop down menu with list of selectable dates. Pay pal offers only 10 selectable options for drop down menu. I require approx 15 options. Can someone help me to add extra options please.

If it were me I would create 2 buttons and split the options between the 2.

Related

How to create multi select paypal smart button

I'm trying to create payment page with PayPal smart button.
My product has 3 plans. I can put 3 PayPal buttons on my site. but It's not match with my design.
I'd like to combine 3 plans to 1 button. Is it possible? And how can I do it?
In the smart button you could have some Javascript code that pulls in the value of what the user has selected, using document.getElementById('...').value or similar

Paypal buttons integration

Good morning, i have to create a landing page that gives the possibility to the user to book an pay with paypal buttons a limited training course.
Is the a way to make the paypal button interact?
I know that it is the possibility to set a stocking for the single product, but what i need to know is if it is possible to create a grouped product that change the stocking values of the others.
(example: if i buy the product a that has a 25 pieces stock, it will low the stock of the product b too)
thanks
Yes, you can track your inventory with PayPal buttons. Refer to the link below for the guidelines on creating Yes, you can track your inventory with PayPal buttons.
Refer to the link below for the guidelines on creating a button on your account.
https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/create_payment_button/
a button on your account.

Is it possible to create a Paypal subscription that changes price over time?

I'm new here; I hope this question makes sense.
I'm interested in creating a subscription that reduces over time, to reward long-term users. For example, let's say the full price is $50/month. The subscription would charge that for the first 3 months. Then the next 3 months it would reduce to $40/month. The next 3 months it would drop again to $30/month... and so on until it ends up at $10/month indefinitely.
If the user cancels (or the card/account cannot be charged), if they return to resume their account, they start again at the $50/month price.
Is there an easy way to do this? If not, are there any suggestions for how I might approach it? Thanks!
(EDIT: Note that we need at least 5 price tiers, and possibly up to 8.)
Yeah, it is possible to achieve your requirement with PayPal subscription button. You can use 3 different price with one subscription plan.
Follow below steps to create PayPal subscription button with your requirement:
Login to PayPal
Navigate to Profile > Profile and setting > My selling tools
Click "update" besides PayPal buttons under Selling Online section
In the next page, Click "Create new button" link under Related Items section and enter below details
Choose Button Type : Subscriptions
Enter Item name and choose your currency
Scroll Down and enter Billing amount each cycle : 10
Check "I want to offer a trail period"
Enter Amount to bill for the trail period : 50
Choose trail period(month) : 3
Then check Do you want to offer a second trail period
Enter 40 as Amount and choose 3 as month period
Then Save your button, copy your code and use it.

Add same custom input fields to all Paypal 'add to cart' buttons

I have a list of items on my site that can be purchased, each with a generic Paypal 'Add to cart' button. What I need to be able to do is to collect info from eight additional fields - I've done this in the past on a page with just a single 'buy it now' button via on0/os0, but I don't want the customer to have to enter this extra information on every item they add to cart as it will be the same for every item on the order. Ideally the eight fields I need would be put on the Payment Page, but from what I've read Paypal don't allow this.
What would be the neatest way of doing this? If there was only one form on the page I can see how I could easily do it, but as each 'add to cart' button is a separate form I'm a bit stuck.
Thanks in advance!
You can build your own cart functionality and then use cart upload to transmit the result to PayPal for checkout.
(Or better yet, if you can write API calls, use the Express Checkout API -- with SOLUTIONTYPE=Sole in the initial SetExpressCheckout call if PayPal is your only method of taking payments)
Basically, you have to build this sort of custom cart functionality yourself. PayPal will gladly process the payment with the information you then send, and that is all.

Creating paypal buttons on the fly

I have a webapp, where users sell printing services, I want to allow my users to add a pay now buttons to their pages so customers can pay for their services.
My users specify their paypal email address etc in the settings and set up their services with a price etc.
What API should I use to create the pay now buttons on the fly ?
Thanks
You don't need an API for creating "pay now" buttons. You can either create the button from within your customer's Paypal accounts or dynamically generate with HTML (see HTML Variables for Paypal Payments standard).
One advantage of creating the buttons from your/their Paypal account is that you can get an additional layer of security (support for encrypting the form or using a hosted button id so user cannot change the amount submitted to Paypal).
However, if you deal with hundreds of different buttons then it makes more sense to dynamically generate the buttons and just perform additional validation when Paypal sends back the confirmation (either through PDT or IPN) before shipping your items.
You could use PayPal's JavaScriptButtons API and create your buttons dynamically with:
paypal.button.create(business, data, config, parentNode)
There is an button manager API that let's you create secure buttons - here is more info: https://www.x.com/developers/paypal/products/button-manager
PayPal offers different buttons based on your requirement.
Follow these steps to generate PayPal button:
Login to your PayPal Account
Click on Tools --> All Tools
Click on PayPal buttons
Now you are given few button options --> Buy Now is one if them.
Follow those three steps and then copy the code at the end of 3 steps and paste it in the page where you want this button to appear.
You are good to take Payments!