|
|
|
PayPal Developer Community >
Forums >
Technical Discussion >
PayPal Shopping Cart >
handling_cart not working!! Please Help!!
|
| Jump to Page:
1
·
·
·
·
·
·
·
·
·
| Next Page
|
|
|
|
|
handling_cart not working!! Please Help!!
|
|
huggybeat
Regular Visitor
Posts: 8
Registered: 05-15-2008


Message 1 of 95

Viewed 13,497 times
|

|
My paypal shopping cart has all of a sudden stopped totalling the handling_cart value. This started a day a go, and i had'nt made any changes or updates to the site. My shopping Cart buttons were set to to give one overall handling charge plus the individual shipping fee for each item. The shipping fees show up but the shopping cart handling fee does not. I have tried other paypal button generators to check against my coding, but they too did not total the overall shopping cart fee (handling_cart). I have tryed using the 'handling' value but this gives a specific handling fee to each item, whereas i would like one set handling fee for the entire shopping cart! everything was working fine up until yesterday 15/5/08
Have paypal made any updates the would effect this, or is it just me? Could someone also let me know what would effect this i.e account profile settings?
Please help !!
Huggs
<td align="center" valign="middle" bgcolor="#000000"><form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="bn" value="webassist.dreamweaver.4_0_3"> <input type="hidden" name="add" value="1"> <input type="hidden" name="business" value="paypal@mysite.com"> <input type="hidden" name="item_name" value="my_product"> <input type="hidden" name="item_number" value="12345"> <input type="hidden" name="amount" value="10.00"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="shipping" value="0.55"> <input type="hidden" name="shipping2" value="0.55"> <input type="hidden" name="handling" value="4.25"> <input type="hidden" name="receiver_email" value="paypal@mysite.com"> <input type="hidden" name="mrb" value="R-3WH47588B4505740X"> <input type="hidden" name="pal" value="ANNSXSLJLYR2A"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="shopping_url" value="http://www.mysite.com/order_page.html"> <input type="image" name="submit" src="addcart_bttn.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!"> <span class="item_hd">Qty</span> <select name="quantity"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </form> </td> <td align="center" valign="middle" bgcolor="#000000"><form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="bn" value="webassist.dreamweaver.4_0_3"> <input type="hidden" name="business" value="paypal@mysite.com"> <input type="hidden" name="add" value="1"> <input type="hidden" name="item_name" value="my 2nd product"> <input type="hidden" name="item_number" value="2-12345"> <input type="hidden" name="amount" value="21.00"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="shipping" value="0.55"> <input type="hidden" name="shipping2" value="0.55"> <input type="hidden" name="handling" value="4.25"> <input type="hidden" name="receiver_email" value="paypal@mysite.com"> <input type="hidden" name="mrb" value="R-3WH47588B4505740X"> <input type="hidden" name="pal" value="ANNSXSLJLYR2A"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="0"> <input type="hidden" name="shopping_url" value="http://www.mysite.com/order_page.html"> <input type="image" name="submit" src="addcart_bttn.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!"> <span class="item_hd">Qty</span> <select name="quantity"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <br>
|
|
|
|
05-15-2008 05:49 PM
|
|
|
|
|
|
Re: handling_cart not working!! Please Help!!
|
|
skier
Ace Developer
Posts: 6574
Registered: 06-01-2007


Message 2 of 95

Viewed 13,491 times
|

|
|
Seems there may be a possible bug. The "handling_cart" variable is supposed to applied after you select "Proceed to Check Out". For what ever reason after testing several scenarios, it does not appear to be showing up. Below is the example code I used for testing. Bottom line, all you can do for now is open a PayPal Support Ticket to document the issue. Hopefully, we'll hear from some other forum members on this topic. Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test Page</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
</head>
<body>
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1">
<input type="hidden" name="business" value="youremail@youremail.com">
<input type="hidden" name="item_name" value="my_product">
<input type="hidden" name="item_number" value="12345">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="shipping" value="0.55">
<input type="hidden" name="shipping2" value="0.55">
<input type="hidden" name="handling_cart" value="4.25">
<input type="hidden" name="receiver_email" value="youremail@youremail.com">
<input type="hidden" name="mrb" value="R-3WH47588B4505740X">
<input type="hidden" name="pal" value="ANNSXSLJLYR2A">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="bn" value="PP-ShopCartBF">
<input type="hidden" name="shopping_url" value="http://www.mysite.com/order_page.html">
Select Quantity:
<select name="quantity">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br><br>
<input type="image" name="submit" src="https://www.paypal.com//en_US/i/btn/x-click-but22.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!">
</form>
<br><br><br>
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="youremail@youremail.com">
<input type="hidden" name="add" value="1">
<input type="hidden" name="item_name" value="my 2nd product">
<input type="hidden" name="item_number" value="2-12345">
<input type="hidden" name="amount" value="21.00">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="shipping" value="0.55">
<input type="hidden" name="shipping2" value="0.55">
<input type="hidden" name="handling_cart" value="4.25">
<input type="hidden" name="receiver_email" value="paypal@mysite.com">
<input type="hidden" name="mrb" value="R-3WH47588B4505740X">
<input type="hidden" name="pal" value="ANNSXSLJLYR2A">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="bn" value="PP-ShopCartBF">
<input type="hidden" name="shopping_url" value="http://www.mysite.com/order_page.html">
Select Quantity:
<select name="quantity">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br><br>
<input type="image" name="submit" src="https://www.paypal.com//en_US/i/btn/x-click-but22.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!">
</form>
</form>
</body>
</html> Regards,
skier
|
|
|
|
05-15-2008 06:29 PM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: handling_cart not working!! Please Help!!
|
|
Phone-Man
Visitor
Posts: 7
Registered: 05-16-2008


Message 10 of 95

Viewed 13,328 times
|

|
|
I've given up on hoping PayPal might fix this in a timely manner. I posted a banner at the top of all my pages with a special cart item "handling charge" (just like any other cart item) and am requesting customers add it manually to all orders. Anybody have an estimate on how many vendors are using the "handling_cart" feature and are impacted by this problem?
|
|
|
|
05-16-2008 10:42 PM
|
|
|
| Jump to Page:
1
·
·
·
·
·
·
·
·
·
| Next Page
|
|
|
|