ok, i opened the cart object and selected calculations. I then selected FullDetails and clicked the "Add to Formula" button at the bottom right and selected "Size" from the list. This generated the following code.
[Size][Quantity] . ' ' . [Name] . ' (' . [ID] . ')'
When I uploaded the revised cart and clicked on any product, i got the following error. Parse error: syntax error, unexpected T_VARIABLE in D:\Domains\mysite.com\wwwroot\WA_eCart\mycartCart_PHP.php on line 11
Here's line 11
$itmObj->FullDetails = $itmObj->Quantity . ' ' . $itmObj->Name . ' (' . $itmObj->ID . ')'$itmObj->Size;//t
Thanks for all the help, by the way.