on the confirm page, there will be a hidden form element to pass the item name, similar to this:<input type="hidden" name="item_name_<?php echo $yourCart_Index+1; ?>" id="item_name_<?php echo $yourCart_Index+1; ?>" value="<?php echo $yourCart->DisplayInfo("Name") ?>" />you can edit this to include the style as well:
<input type="hidden" name="item_name_<?php echo $yourCart_Index+1; ?>" id="item_name_<?php echo $yourCart_Index+1; ?>" value="<?php echo $yourCart->DisplayInfo("Name") ?> - <?php echo $yourCart->DisplayInfo("Styles"); ?>" />NOTE: this is purely example code, it assumes the name of the cart is "yourCart" and the styles column is named "Styles", you will need to make appropriate modifications for the cart name and column name.

Hi Jason,
At the moment I have the style being passed to paypal on the same line as the ID as above.
I have already tried but I would like to add two separate lines that will be passed to my paypal. I would like to pass "style" on a separate line and "size" on a separate line. I have tried this code for both, however there is no change:
<input type="hidden" name="item_style_<?php echo $Shoppingcart_Index+1; ?>" id="item_style_<?php echo $Shoppingcart_Index+1; ?>" value="<?php echo $Shoppingcart->DisplayInfo("Style") ?>" />
<input type="hidden" name="item_size_<?php echo $Shoppingcart_Index+1; ?>" id="item_size_<?php echo $Shoppingcart_Index+1; ?>" value="<?php echo $Shoppingcart->DisplayInfo("Size") ?>" />
Thanks Again,
Also, any progress on the "pickup" option being fixed?
-Dan


