PDA

View Full Version : Pay Pal Std Checkout


dan377928
05-14-2009, 07:43 PM
Is there a way to get more info to paypal then Item name, Item Number, & qty I am using Dynamic form elements text fields. I want to add to the list below but when i create new form elements they dont show in Paypal checkout.

<input type="hidden" name="item_name_<?php echo $eCart1_Index+1; ?>" id="item_name_<?php echo $eCart1_Index+1; ?>" value="<?php echo $eCart1->DisplayInfo("Name") ?>" />
<input type="hidden" name="item_number_<?php echo $eCart1_Index+1; ?>" id="item_number_<?php echo $eCart1_Index+1; ?>" value="<?php echo $eCart1->DisplayInfo("Item_number"); ?>" />
<input type="hidden" name="quantity_<?php echo $eCart1_Index+1; ?>" id="quantity_<?php echo $eCart1_Index+1; ?>" value="<?php echo $eCart1->DisplayInfo("Quantity") ?>" />

Thanking you in advance

Ray Borduin
05-15-2009, 06:30 AM
you can use on1, os1, on2, and os2 in the cart, and you can use Custom outside of the cart. Paypal standard works with specifically named form elements, so unless you name them properly they will be ignored. You should review the paypal standard documentation for a complete list of form element names and what they can be used for.

dan377928
05-15-2009, 10:20 AM
I saw the on1 etc but they seem to have disappeared and I can't get them back

Ray Borduin
05-15-2009, 10:23 AM
What does your syntax look like?