themapplz,
I take it that you've set the payment cart style in Payment MS to show details.
According to what I read from the calling program CartMadeSimple->orders.api.php on lines 926 thru 929 the name of the product (or attribute) should be handled correctly.
Code: Select all
$pgw->fields['item_name_'.$line] = $orderline->productname;
if ($orderline->attributename != '') {
$pgw->fields['item_name_'.$line] .= ' ('.$orderline->attributename.')';
}
Duketown