I have series of subscription plans, among which user can select anyone and make payments via paypal but apart from that, there is one extra facility one may want to avail with any of the package .i.e. that is home delivery.
I have taken help from this site : LINK
But there is no option for adding 2nd item that can be selected as checkbox with any of the plan. I tried this code
<input type="hidden" name="item_name_1" value="Item Name 1">
<input type="hidden" name="amount_1" value="1.00">
<input type="hidden" name="item_name_2" value="Item Name 2">
<input type="hidden" name="amount_2" value="2.00">
But using this code, I now can't even see the original "plan" name which was displayed before on paypal site.
Am I missing something?