Jump to content
xt:Commerce Community Forum

checkout_confirmation.php


madonna

Recommended Posts

Hallo,

ich ben?tige Hilfe zu folgendem Problem.

Ich m?chte gerne, dass in der checkout_confirmation.php auch die Artikelnummern der Option ausgewiesen wird (attributes_model).

F?r die normale Artikelnummer hab ich das hinbekommen aber bei der Art.Nr. der Option bin ich kl?glich gescheitert.

Da ich nicht gerade eine Leuchte in PHP bin, hoffe ich jemanand von Euch kann mir dabei helfen.

Vielen Dank

madonna

Hier der Ausschnitt aus meiner checkout_confirmation.php

$data_products = '<table width="100%" border="0" cellspacing="0" cellpadding="0">';

for ($i = 0, $n = sizeof($order->products); $i < $n; $i ++) {

$data_products .= '<tr>'."\n".' <td class="main" align="left" valign="top">'.$order->products[$i]['qty'].' x '.$order->products[$i]['name'].' '.$order->products[$i]['model'].'</td>'."\n".' <td class="main" align="right" valign="top">'.$xtPrice->xtcFormat($order->products[$i]['final_price'], true).'</td></tr>'."\n";

if ((isset ($order->products[$i]['attributes'])) && (sizeof($order->products[$i]['attributes']) > 0)) {

for ($j = 0, $n2 = sizeof($order->products[$i]['attributes']); $j < $n2; $j ++) {

$data_products .= '<tr>

<td class="main" align="left" valign="top">

<nobr> - '.$order->products[$i]['attributes'][$j]['option'].': '.$order->products[$i]['attributes'][$j]['value'].'

<nobr></td>

<td class="main" align="right" valign="top"></td></tr>';

}

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...