how do i add a "quantity" option to my button? ie: 5 x shirts, 10 x socks, etc

roiipatterson
New Community Member
1 REPLY 1

PayPal_Frank
Administrator
Administrator

Hi roiipatterson,

 

Welcome! 🙂

 

Typically the quantity is set on the PayPal pages.  It's available by default for Add to Cart buttons. For Buy Now buttons, you'll want to make sure the "Do you want to let your customer change order quantities?" is set to yes under Step 3 of the button creator.

 

After the customer clicks an Add to Cart or Buy Now button, they'll have the option to change the quantity on that PayPal page.

 

That's the easiest way to do it. If you want to allow them to set the quantity on your website before clicking the button, you can use the quantity variable and forward that information to PayPal.  You would need to add a custom line of code to the PayPal button code.  Something like this:

 

<table>
<tr><td>Quantity:</td></tr><tr><td><input type="text" name="quantity" value="1"></td></tr>
</table>

 

This would add a text box that allows them to enter a quantity.  You would want your developer to also add code to validate what is being entered to ensure that it's only an integer.  Alternatively you could use a drop down menu if you want to restrict quantity options (1,2,5,10,20, etc). 

 

I hope this helps! 🙂

 

- Frank

If you see a helpful post, please accept it as a solution or give the author kudos. 🙂 Thanks!
Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.