Payment waiting on shipment?

MichaelMuller
Contributor
Contributor

I have a customer that is using Add to Cart buttons on his restaurant menu. Even though the shipping and shipping2 fields are set to 0 (zero), he's not getting his money until he sets the transaction to delivered. Is there a hidden form field we can add that indicates there is no delivery on this product? It's a pick-up window. He needs to get paid before they come to pick up their food.

 

Thanks,

 

Mik

 

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="customer email">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1">
<input type="hidden" name="item_name" value="Calamari - Quart">
<input type="hidden" name="item_number" value="img-2129">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shopping_url" value="https://customer.com/menu">
<input type="hidden" name="shipping" value="0.00">
<input type="hidden" name="shipping2" value="0.00">
<input type="hidden" name="amount" value="20.99">
<p><strong>$20.99</strong></p>
<p><b>Quantity:</b> <input type="text" name="quantity" value="1"></p>
<p><input type="Submit" name="submit" value="Add to Cart"></p>
</form>

 

 

 

Login to Me Too
2 REPLIES 2

MichaelMuller
Contributor
Contributor

I've added this, but it doesn't appear to do anything. Perhaps it's for passing in an address through the button instead of making the item a pick-up only item?

<input type="hidden" name="address_override" value="1" />
Login to Me Too

MichaelMuller
Contributor
Contributor

Ah... found this. testing now.

<input type="hidden" name="no_shipping" value="1" />
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.