Glad you are getting there. For the checkout confirmation page, this is what I did.
I changed includes/templates/default/templates/tpl_checkout_confirmation_default.php
I modified the table around line 55 to this:
PHP Code:
<table id="cartContentsDisplay">
<tr class="cartTableHeading">
<th id="ccQuantityHeading"><?php echo TABLE_HEADING_QUANTITY; ?></th>
<th id="ccProductsHeading"><?php echo TABLE_HEADING_PRODUCTS; ?></th>
<th id="ccTotalHeading"><?php echo TABLE_HEADING_TOTAL; ?></th>
</tr>
<?php // now loop thru all products to display quantity and price
for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
?>
<tr class="<?php echo $order->products[$i]['rowClass']; ?>">
<td class="cartQuantity"><?php echo $order->products[$i]['qty']; ?> x</td>
<td class="cartProductDisplay"><?php echo $order->products[$i]['name']; ?>
<?php // if there are attributes, loop thru them and display one per line
if (isset($order->products[$i]['attributes']) && sizeof($order->products[$i]['attributes']) > 0 ) {
echo '<ul class="cartAttribsList">';
$pas = array();
$list = '';
for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
$list .= '<li>'.$order->products[$i]['attributes'][$j]['option'].': '.nl2br($order->products[$i]['attributes'][$j]['value']).'</li>';
$pas[] = $order->products[$i]['attributes'][$j]['products_attributes_id'];
}
sort($pas);
$products_attributes_ids = '';
for ($x=0; $x<count($pas); ++$x) {
$products_attributes_ids .= $pas[$x].'_';
}
$products_attributes_ids = trim($products_attributes_ids, "_");
$get_sku = $db->Execute("select sku from products_attributes_skus where products_id = '".$order->products[$i]['id']."' and products_attributes_ids = '".$products_attributes_ids."'");
$list = '<li>SKU: '.$get_sku->fields['sku'].'</li>'.$list;
echo $list;
echo '</ul>';
} // endif attribute-info
?>
</td>
<td class="cartTotalDisplay">
<?php echo $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']);
if ($order->products[$i]['onetime_charges'] != 0 ) {
echo '<br /> ' . $currencies->display_price($order->products[$i]['onetime_charges'], $order->products[$i]['tax'], 1);
}
?>
</td>
</tr>
<?php } // end for loopthru all products ?>
</table>
Hope that helps