Hi,
This is my first time using PayPal to handle payments from a website, and I am struggling to get my client's business model to work with PayPal's Website Payments Standard.
Basically the way that each order works is that if the customer orders only 1 tour, there is a single person supplement of £250.
Any thoughts on how I would add this to the checkout?
My best attempt is to add a "handling" fee of £250, and give a discount of £250 if the customer orders more than 1 tour.
For example...
<input name="amount" value="750" />
<input name="handling" value="250" />
<input name="discount_amount" value="0" />
<input name="discount_amount2" value="250" />
<input name="discount_num" value="1" />
This works technically, but it means that the customer is presented with a line item on their bill that reads "Postage and Packaging". I would rather it read "Single Supplement Fee" or "Admin Fee".
Any help and advice would be very welcome.