neuerUser1980 Posted September 29, 2008 Report Share Posted September 29, 2008 Hallo, habe das Problem das ich die Verpackungseinheit mit in der Zusammenfassung der Bestellung haben möchte. Wenn ich es richtig verstehe ist der {$PRODUCTS_BLOCK} in der checkout_confirmation.html dafür verantwortlich. Dieser wird aus der checkout_confirmation.php gezogen. QUELLTEXT $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'] . '</td>' . "\n" . ' <td class="main" align="right" valign="top">' . $xtPrice->xtcFormat($order->products[$i]['final_price'], true) . '</td></tr>' . "\n"; if (ACTIVATE_SHIPPING_STATUS == 'true') { $data_products .= '<tr> <td class="main" align="left" valign="top"> <nobr><small>' . SHIPPING_TIME . $order->products[$i]['shipping_time'] . ' </small><nobr></td> <td class="main" align="right" valign="top"> </td></tr>'; } 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><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'] . ' </i></small><nobr></td> <td class="main" align="right" valign="top"> </td></tr>'; } } $data_products .= '' . "\n"; if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 1) { if (sizeof($order->info['tax_groups']) > 1) $data_products .= ' <td class="main" valign="top" align="right">' . xtc_display_tax_value($order->products[$i]['tax']) . '%</td>' . "\n"; } $data_products .= '</tr>' . "\n"; } $data_products .= '</table>'; $smarty->assign('PRODUCTS_BLOCK', $data_products); Nur habe ich leider keine Ahnung wie ich da die VPE mit reinbasteln kann. Habe einige Sachen ausprobiert und bin leider, mangels PHP-Kenntnissen, kläglich gescheitert. Bin mir auch nicht 100 %ig sicher ob ich an der richtigen Stelle suche. Das ganze in den Warenkorb und in die Bestätigungsmail einzufügen war noch machbar, aber hier weis ich einfach nicht weiter. Wäre super, wenn mir jemand weiterhelfen kann. Gruß Marc Link to comment Share on other sites More sharing options...
neuerUser1980 Posted September 30, 2008 Author Report Share Posted September 30, 2008 Hm, keiner ne Idee? Ich denke mal ich werde nicht der erste sein der auf diese Problematik stösst. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.