Werbung / Banner buchen
Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: Produktbilder in checkout_confirmation ???

    dermarcus72

    • Frisch an Board
    • Beiträge: 67
    Re: Produktbilder in checkout_confirmation ???
    Antwort #45 am: 28. Juli 2012, 21:32:32
    Daaaanke :))

    Habe jetzt rumprobiert und einfach nur ein leerzeichen rausgenommen und nun passt es  :-B :-B

    Könntest Du noch posten an welcher Stelle du das Leerzeichen rausgenommen hast ?
    Das wäre nett !  ;-)
    Managed Server

    Zeeb-Shop

    • Fördermitglied
    • Beiträge: 88
    Re: Produktbilder in checkout_confirmation ???
    Antwort #46 am: 07. August 2012, 10:41:05
    @peterpan19 : Warum willst du nochmal auf den Artikel verlinken? Bau zusätzlich die Kurzbeschreibung mit ein und gut ist.

    Mir gefällt diese Lösung sehr gut. Allerdings will ich die Fotos etwas größer darstellen, so dass es für mich schöner wäre, wenn die Kurzbeschreibung rechts vom Foto stehen würde, also unter Artikel, Attributen und Versandzeit. Da ich nicht programmieren kann, wäre es sehr nett, wenn mir jemand hierfür den Code hätte. Danke im voraus.
    Roland

    cannewitz

    • Mitglied
    • Beiträge: 168
    • Geschlecht:
    Re: Produktbilder in checkout_confirmation ???
    Antwort #47 am: 07. August 2012, 13:30:35
    Hallo Zeeb-Shop.

    versuch's mal damit:  ;-)
    suche im Code folgende Stelle und füge den mit //ca gekennzeichneten bereich ein.

    Code: PHP  [Auswählen]
    // selected attributes for each product
                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 .= "\n".
                                '    <br />'."\n".
                                '    <nobr><small>&nbsp;<i> - '.$order->products[$i]['attributes'][$j]['option'].': '.$order->products[$i]['attributes'][$j]['value'].'</i></small></nobr>';
                        }
                }
    //ca                   
                            $data_products .= "\n".
                                '    <br />'."\n".
                                                            ' <small>' . (!empty($order->products[$i]['short_description'])?$order->products[$i]['short_description']:$order->products[$i]['description']). '</small>';
    //ca

    Gruß.

    Zeeb-Shop

    • Fördermitglied
    • Beiträge: 88
    Re: Produktbilder in checkout_confirmation ???
    Antwort #48 am: 07. August 2012, 20:42:52
    suche im Code folgende Stelle und füge den mit //ca gekennzeichneten bereich ein.

    Hallo cannewitz und alle anderen,

    besten Dank für Eure Hilfe.

    Hat mich doch einen ganzen Schritt weitergebracht. Allerdings habe ich teilweise Kurzbeschreibungen und teilweise keine. Wenn keine Kurzbeschreibungen vorhanden sind, soll der Anfangstext aus der Beschreibung angezeigt werden. Und bei manchen Kurzbeschreibungen gibt es am Anfang kleine Grafiken, die ich auf der Bestellseite nicht anzeigen wollte. Dann hat es mir auch ich glaube die Attribute links unter das Foto geschoben. Auch wollte ich die Versandhinweise nicht in einem separaten Feld haben. Ich habe jetzt ohne Programmierkenntnisse Code aus verschiedenen Anleitungen zusammengeschnippelt.

    Was mir jetzt noch nicht gefällt:
    • Der html-Code entschlackt auch <br /> in der Beschreibung und die Wörter werden dann zusammengerückt. Wie kann man noch einen Befehl einbauen der <br /> durch ein Leerzeichen ersetzt?
    • Bei den Kurzbeschreibungen wird die dem Text vorangestellte Grafik entschlackt, gleichzeitig rückt der Text aber auch ein. Was kann ich da noch einbauen, dass der Text in solchen Fällen nicht eingerückt wird?

    Ansonsten bin ich jetzt zufrieden. Eine Grafik habe ich mal angehängt. Genauso den von mir zusammengeflickten $data_products Code.

    Danke nochmals.

    Roland
    Code: PHP  [Auswählen]
    $data_products = "\n".
    ' <table width="100%" border="0" cellspacing="0" cellpadding="0">';
    // products table header TR
    if (file_exists(DIR_WS_LANGUAGES.$_SESSION['language'].'/checkout_confirmation.php')) {
            $data_products.= "\n".
                            '  <tr>'."\n".
                                    '   <td class="main_header" align="left" valign="top"><b>'.HEADER_QTY.'</b></td>'."\n".
                            '   <td class="main_header" align="left" valign="top" colspan="2"><b>'.HEADER_ARTICLE.'</b></td>'."\n".
                                    '   <td class="main_header" align="right" valign="top"><b>'.HEADER_SINGLE.'</b></td>'."\n".
                            '   <td class="main_header" align="right" valign="top"><b>'.HEADER_TOTAL.'</b></td>'."\n".
                                    '  </tr>';
    }
    // products TR for each product in cart
    for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
            $data_products .= "\n".
                    '  <tr>'."\n".
                    '   <td class="main_row" align="left" valign="top">'.$order->products[$i]['qty'].' x</td>'."\n".
                    '   <td class="main_row" align="left" valign="top" width="90"><img src=" '.DIR_WS_THUMBNAIL_IMAGES.xtc_get_products_image($order->products[$i]['id']).' "width="100px" /></td>'."\n".
                    '   <td class="main_row" align="left" valign="top">'.$order->products[$i]['name'];
                    // selected attributes for each product
                    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 .= "\n".
                                            '    <br /><br />'."\n".
                                            '    <nobr><small><i> - '.$order->products[$i]['attributes'][$j]['option'].': '.$order->products[$i]['attributes'][$j]['value'].'</i></small></nobr>';
                                            }
                                                }
    //ca
                        $data_products .= "\n".
                                                '    <br /><br />'."\n".
                                                                '<small>';
                                                                            if (!empty($order->products[$i]['short_description'])) {
                                                                            $data_products .=trim(strip_tags($order->products[$i]['short_description']));
                                                                            } else {
                                                                             $data_products .=trim(substr(strip_tags($order->products[$i]['description']),0,300));
                                                                             if (strlen(strip_tags($order->products[$i]['description'])) > 300) $data_products.=' [...]';
    }
                                                                             '</small>';
    //ca

    // shipping information for each product
                                                    if (ACTIVATE_SHIPPING_STATUS == true) {
                                                            $data_products .= "\n".
                                                                    '  <br /><br />'."\n".
                                                                    '  <nobr><small>'.SHIPPING_TIME.$order->products[$i]['shipping_time'].'</small></nobr>';
                                                                    }

                                                    $data_products .= '</td>'."\n".
                                                    '   <td class="main_row" align="right" valign="top">'.$xtPrice->xtcFormat($order->products[$i]['price'], true).'</td>'."\n".
                                                    '   <td class="main_row" align="right" valign="top">'.$xtPrice->xtcFormat($order->products[$i]['final_price'], true).'</td>'."\n".
                                                    '  </tr>';
                                                   
                                                                    // tax TR
                                                                    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 .= "\n".
                                                                                                    '  <tr>'."\n".
                                                                                                    '   <td class="main" valign="top" align="right">'.xtc_display_tax_value($order->products[$i]['tax']).'%</td>'."\n".
                                                                                                    '  </tr>';
            }
                    $data_products .= "\n";
    }
    $data_products .= ' </table>';

    xzillen

    • Mitglied
    • Beiträge: 128
    Re: Produktbilder in checkout_confirmation ???
    Antwort #49 am: 21. August 2012, 18:53:58
    Hallo Zusammen

    Ich habe mal ne frage

    ich habe auch versucht ein Produktbilder in checkout_confirmation  einzubauen nur bekommen ich das nicht kann mir da einer helfen

    netscout

    • Fördermitglied
    • Beiträge: 264
    • Geschlecht:
    Re: Produktbilder in checkout_confirmation ???
    Antwort #50 am: 21. August 2012, 21:29:55
    Hallo,
    sieh dir die Posts vorher an und vergleiche mit deiner checkout_confirmation.php

    oder geh in deine checkout_confirmation.php und suche:
    Code: PHP  [Auswählen]
    . "\n" . '  <td class="main_row" align="center" valign="top">' . $order->products[$i]['qty'] . ' x ' . '</td>'

    und füge danach ein:
    Code: PHP  [Auswählen]
    . "\n" . '  <td class="main_row" align="left" valign="top" rowspan="3"><img src="'.DIR_WS_THUMBNAIL_IMAGES.xtc_get_products_image($order->products[$i]['id']).'" /></td>'

    Greetz
    Jens

    xzillen

    • Mitglied
    • Beiträge: 128
    Re: Produktbilder in checkout_confirmation ???
    Antwort #51 am: 21. August 2012, 21:41:47
    ok danke

    ich habe das jetzt in bekommen

    was mich aber jetzt nocht stört ist die position der attribute  in der checkout_confirmation.php

    siehe anhang

    netscout

    • Fördermitglied
    • Beiträge: 264
    • Geschlecht:
    Re: Produktbilder in checkout_confirmation ???
    Antwort #52 am: 21. August 2012, 21:46:25

    seba

    • Neu im Forum
    • Beiträge: 17
    Re: Produktbilder in checkout_confirmation ???
    Antwort #53 am: 11. September 2012, 12:08:35
    Hallo zusammen,

    wie kann man bei der Artikelkurzbeschreibung nach z.B. 5 Wörtern einen Zeilenumbruch machen?
    Könnte mir vielleicht jemand von Euch den in diesem Thread verwendeten Code entsprechend anpassen? :)
    Vielen Dank.

    Greetz
    Sebby

    seba

    • Neu im Forum
    • Beiträge: 17
    Re: Produktbilder in checkout_confirmation ???
    Antwort #54 am: 20. September 2012, 11:04:56
    Hallo zusammen,

    wie kann man bei der Artikelkurzbeschreibung nach z.B. 5 Wörtern einen Zeilenumbruch machen?
    Könnte mir vielleicht jemand von Euch den in diesem Thread verwendeten Code entsprechend anpassen? :)
    Vielen Dank.

    Greetz
    Sebby

    Kann mir keiner weiterhelfen?
    Wäre echt nett.
    Vielen Dank.

    reblaus

    • Fördermitglied
    • Beiträge: 184
    Re: Produktbilder in checkout_confirmation ???
    Antwort #55 am: 23. Dezember 2012, 16:08:35
    erledigt.

    Framach

    • Mitglied
    • Beiträge: 116
    • Geschlecht:
    Re: Produktbilder in checkout_confirmation ???
    Antwort #56 am: 08. Januar 2013, 23:36:25
    Wo bitte muss ich was einfügen damit man die Bilder sieht?
    Kann mir bitte jemand den richtigen und kompletten Quelltext hier veröffentlichen.
    Bitte

    Code: PHP  [Auswählen]
    <?php

    /* -----------------------------------------------------------------------------------------
       $Id: checkout_confirmation.php 1277 2005-10-01 17:02:59Z mz $  

       XT-Commerce - community made shopping
       http://www.(( Wir dulden keine kommerziellen Werbelinks - Bitte <a href="index.php?topic=3013.0">Forenregeln</a> beachten! ))

       Copyright (c) 2003 XT-Commerce
       -----------------------------------------------------------------------------------------
       based on:
       (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
       (c) 2002-2003 osCommerce(checkout_confirmation.php,v 1.137 2003/05/07); www.oscommerce.com
       (c) 2003      nextcommerce (checkout_confirmation.php,v 1.21 2003/08/17); www.nextcommerce.org

       Released under the GNU General Public License
       -----------------------------------------------------------------------------------------
       Third Party contributions:
       agree_conditions_1.01                Autor:  Thomas Ploenkers (webmaster@oscommerce.at)

       Customers Status v3.x  (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/elari/?sortby=date#dirlist

       Credit Class/Gift Vouchers/Discount Coupons (Version 5.10)
       http://www.oscommerce.com/community/contributions,282
       Copyright (c) Strider | Strider@oscworks.com
       Copyright (c  Nick Stanko of UkiDev.com, nick@ukidev.com
       Copyright (c) Andre ambidex@gmx.net
       Copyright (c) 2001,2002 Ian C Wilson http://www.phesis.org

       Released under the GNU General Public License
       ---------------------------------------------------------------------------------------*/


    include ('includes/application_top.php');
    // create smarty elements
    $smarty = new Smarty;
    // include boxes
    require (DIR_FS_CATALOG . 'templates/' . CURRENT_TEMPLATE . '/source/boxes.php');
    // include needed functions
    require_once (DIR_FS_INC . 'xtc_calculate_tax.inc.php');
    require_once (DIR_FS_INC . 'xtc_check_stock.inc.php');
    require_once (DIR_FS_INC . 'xtc_display_tax_value.inc.php');

    // BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    require (DIR_WS_LANGUAGES.$_SESSION['language'].'/checkout_confirmation.php');
    // EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    // if the customer is not logged on, redirect them to the login page


    if (!isset ($_SESSION['customer_id']))
            xtc_redirect(xtc_href_link(FILENAME_LOGIN, '', 'SSL'));

    // if there is nothing in the customers cart, redirect them to the shopping cart page
    if ($_SESSION['cart']->count_contents() < 1)
            xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART));

    // avoid hack attempts during the checkout procedure by checking the internal cartID
    if (isset ($_SESSION['cart']->cartID) && isset ($_SESSION['cartID'])) {
            if ($_SESSION['cart']->cartID != $_SESSION['cartID'])
                    xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
    }

    // if no shipping method has been selected, redirect the customer to the shipping method selection page
    if (!isset ($_SESSION['shipping']))
            xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));

    //check if display conditions on checkout page is true

    if (isset ($_POST['payment']))
            $_SESSION['payment'] = xtc_db_prepare_input($_POST['payment']);

    if ($_POST['comments_added'] != '')
            $_SESSION['comments'] = xtc_db_prepare_input($_POST['comments']);

    //-- TheMedia Begin check if display conditions on checkout page is true
    if (isset ($_POST['cot_gv']))
            $_SESSION['cot_gv'] = true;
    // if conditions are not accepted, redirect the customer to the payment method selection page

    if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
            if ($_POST['conditions'] == false) {
                    $error = str_replace('\n', '<br />', ERROR_CONDITIONS_NOT_ACCEPTED);
                    xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode($error), 'SSL', true, false));
            }
    }

    // load the selected payment module
    require (DIR_WS_CLASSES . 'payment.php');
    if (isset ($_SESSION['credit_covers']) || !isset($_SESSION['payment'])) { //DokuMan - 2010-10-14 - check that payment is not yet set
            $_SESSION['payment'] = 'no_payment'; // GV Code Start/End ICW added for CREDIT CLASS
    }
    $payment_modules = new payment($_SESSION['payment']);

    // GV Code ICW ADDED FOR CREDIT CLASS SYSTEM
    require (DIR_WS_CLASSES . 'order_total.php');
    require (DIR_WS_CLASSES . 'order.php');
    $order = new order();

    $payment_modules->update_status();

    // GV Code Start
    $order_total_modules = new order_total();
    $order_total_modules->collect_posts();
    $order_total_modules->pre_confirmation_check();
    // GV Code End

    // GV Code line changed
    if ((is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && (!isset($$_SESSION['payment']) || !is_object($$_SESSION['payment'])) && (!isset($_SESSION['credit_covers']))) || (isset($$_SESSION['payment']) && is_object($$_SESSION['payment']) && ($$_SESSION['payment']->enabled == false))) {
    //if ((is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && (!is_object($$_SESSION['payment'])) && (!isset ($_SESSION['credit_covers']))) || (is_object($$_SESSION['payment']) && ($$_SESSION['payment']->enabled == false))) {
            xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
    }

    // saferpay commented out
    /*if (is_array($payment_modules->modules))
            $payment_modules->pre_confirmation_check();*/

    // saferpay commented out eof

    // load the selected shipping module
    require (DIR_WS_CLASSES . 'shipping.php');
    $shipping_modules = new shipping($_SESSION['shipping']);

    // Stock Check
    $any_out_of_stock = false;
    if (STOCK_CHECK == 'true') {
            for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
                    if (xtc_check_stock($order->products[$i]['id'], $order->products[$i]['qty']))
                            $any_out_of_stock = true;
            }
            // Out of Stock
            if ((STOCK_ALLOW_CHECKOUT != 'true') && ($any_out_of_stock == true))
                    xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART));
    }

    // saferpay added
    $total_block = '<table>';
    if (MODULE_ORDER_TOTAL_INSTALLED) {
            $order_total_modules->process();
            $total_block .= $order_total_modules->output();
    }
    $total_block .= '</table><div style="clear:both"></div>';
    if (is_array($payment_modules->modules))
            $payment_modules->pre_confirmation_check();
    // saferpay added eof

    $breadcrumb->add(NAVBAR_TITLE_1_CHECKOUT_CONFIRMATION, xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
    $breadcrumb->add(NAVBAR_TITLE_2_CHECKOUT_CONFIRMATION);

    require (DIR_WS_INCLUDES . 'header.php');
    if (SHOW_IP_LOG == 'true') {
            $smarty->assign('IP_LOG', 'true');
            if ($_SERVER["HTTP_X_FORWARDED_FOR"]) {
                    $customers_ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
            } else {
                    $customers_ip = $_SERVER["REMOTE_ADDR"];
            }
            $smarty->assign('CUSTOMERS_IP', $customers_ip);
    }
    $smarty->assign('DELIVERY_LABEL', xtc_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br />'));
    if ($_SESSION['credit_covers'] != '1') {
            $smarty->assign('BILLING_LABEL', xtc_address_format($order->billing['format_id'], $order->billing, 1, ' ', '<br />'));
    }
    $smarty->assign('PRODUCTS_EDIT', xtc_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL')); // web28 - 2011-04-14 - change SSL -> NONSSL
    $smarty->assign('SHIPPING_ADDRESS_EDIT', xtc_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL'));
    $smarty->assign('BILLING_ADDRESS_EDIT', xtc_href_link(FILENAME_CHECKOUT_PAYMENT_ADDRESS, '', 'SSL'));

    if ($_SESSION['sendto'] != false) {

            if ($order->info['shipping_method']) {
                    $smarty->assign('SHIPPING_METHOD', $order->info['shipping_method']);
                    $smarty->assign('SHIPPING_EDIT', xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));

            }

    }

    if (sizeof($order->info['tax_groups']) > 1) {

            if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 1) {

            }

    } else {

    }

    $data_products = '<table width="100%" border="0" cellspacing="0" cellpadding="0">';
    // BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    if (file_exists(DIR_WS_LANGUAGES.$_SESSION['language'].'/checkout_confirmation.php')) {
            $data_products.= '<tr>' . "\n" . '  <td class="main_header" align="left" valign="top"><b>' . HEADER_QTY . '</b></td>'
                                                            . "\n" . '  <td class="main_header" align="left" valign="top"><b>' . HEADER_ARTICLE . '</b></td>'
                                                            . "\n" . '  <td class="main_header" align="right" valign="top"><b>' . HEADER_SINGLE . '</b></td>'
                                                            . "\n" . '  <td class="main_header" align="right" valign="top"><b>' . HEADER_TOTAL . '</b></td>
                                             </tr>'
    . "\n";
    }
    // EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {  
           
    // BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    //      $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";               
            $data_products .= '<tr>' . "\n" . '  <td class="main_row" align="left" valign="top">' . $order->products[$i]['qty'] . ' x ' . '</td>'
                                                             . "\n" . '  <td class="main_row" align="left" valign="top">' . $order->products[$i]['name'] . '</td>'
                                                             . "\n" . '  <td class="main_row" align="right" valign="top">' . $xtPrice->xtcFormat($order->products[$i]['price'], true) . '</td>'
                                                             . "\n" . '  <td class="main_row" align="right" valign="top">' . $xtPrice->xtcFormat($order->products[$i]['final_price'], true) . '</td>
                                               </tr>'
    . "\n";
    // EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation                                   
            if (ACTIVATE_SHIPPING_STATUS == 'true') {

    // BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    /*
                    $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">&nbsp;</td></tr>';
    */

                    $data_products .= '<tr>
                                                            <td class="main" align="left" valign="top">&nbsp;</td>
                                                            <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">&nbsp;</td>
                                                            <td class="main" align="right" valign="top">&nbsp;</td>
                                                            </tr>'
    ;
    // EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation

            }
            if ((isset ($order->products[$i]['attributes'])) && (sizeof($order->products[$i]['attributes']) > 0)) {
                    for ($j = 0, $n2 = sizeof($order->products[$i]['attributes']); $j < $n2; $j++) {
    // BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
    /*
                            $data_products .= '<tr>
                                                                    <td class="main" align="left" valign="top">
                                                                    <nobr><small>&nbsp;<i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'] . '
                                                                    </i></small><nobr></td>
                                                                    <td class="main" align="right" valign="top">&nbsp;</td></tr>';
    */

                            $data_products .= '<tr>
                                                <td class="main" align="left" valign="top">&nbsp;</td>
                                                                    <td class="main" align="left" valign="top">
                                                                    <nobr><small>&nbsp;<i> - '
    . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'] . '
                                                                    </i></small><nobr></td>
                                                                    <td class="main" align="right" valign="top">&nbsp;</td>
                                                                    <td class="main" align="right" valign="top">&nbsp;</td></tr>'
    ;
    // EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation
                    }
            }

            $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);

    if ($order->info['payment_method'] != 'no_payment' && $order->info['payment_method'] != '') {
            include (DIR_WS_LANGUAGES . '/' . $_SESSION['language'] . '/modules/payment/' . $order->info['payment_method'] . '.php');
            $smarty->assign('PAYMENT_METHOD', constant(MODULE_PAYMENT_ . strtoupper($order->info['payment_method']) . _TEXT_TITLE));
    }
    $smarty->assign('PAYMENT_EDIT', xtc_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

    // saferpay commented out
    /*$total_block = '<table align="right">';
    if (MODULE_ORDER_TOTAL_INSTALLED) {
            $order_total_modules->process();
            $total_block .= $order_total_modules->output();
    }
    $total_block .= '</table><div style="clear:both"></div>';*/

    // saferpay commented out eof

    $smarty->assign('TOTAL_BLOCK', $total_block);

    if (is_array($payment_modules->modules)) {
            if ($confirmation = $payment_modules->confirmation()) {

                    $payment_info = $confirmation['title'];
                    for ($i = 0, $n = sizeof($confirmation['fields']); $i < $n; $i++) {

                            $payment_info .= '<table>
                                                                    <tr>
                                                                    <td>'
    . xtc_draw_separator('pixel_trans.gif', '10', '1') . '</td>
                                                                    <td class="main">'
    . $confirmation['fields'][$i]['title'] . '</td>
                                                                    <td>'
    . xtc_draw_separator('pixel_trans.gif', '10', '1') . '</td>
                                                                    <td class="main">'
    . stripslashes($confirmation['fields'][$i]['field']) . '</td>
                                                                  </tr></table>'
    ;

                    }
                    $smarty->assign('PAYMENT_INFORMATION', $payment_info);

            }
    }

    if (xtc_not_null($order->info['comments'])) {
            $smarty->assign('ORDER_COMMENTS', nl2br(htmlspecialchars($order->info['comments'])) . xtc_draw_hidden_field('comments', $order->info['comments']));

    }

    if (isset ($$_SESSION['payment']->form_action_url) && !$$_SESSION['payment']->tmpOrders) {

            $form_action_url = $$_SESSION['payment']->form_action_url;

    } else {
            $form_action_url = xtc_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL');
    }

    // saferpay changes
    // we need a source for our js to be loaded befor form
    $sPreForm = '';
    if ( method_exists($$_SESSION['payment'], 'confirm_pre_form') ) {
            $sPreForm = $$_SESSION['payment']->confirm_pre_form();
    }
    $smarty->assign('CHECKOUT_FORM', $sPreForm . xtc_draw_form('checkout_confirmation', $form_action_url, 'post'));
    // saferpay changes eof



    $payment_button = '';
    if (is_array($payment_modules->modules)) {
            $payment_button .= $payment_modules->process_button();
    }
    $smarty->assign('MODULE_BUTTONS', $payment_button);
    $smarty->assign('CHECKOUT_BUTTON', xtc_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER) . '</form>' . "\n");

    //check if display conditions on checkout page is true
    if (DISPLAY_REVOCATION_ON_CHECKOUT == 'true') {

            if (GROUP_CHECK == 'true') {
                    $group_check = "and group_ids LIKE '%c_" . $_SESSION['customers_status']['customers_status_id'] . "_group%'";
            }

            $shop_content_query = "SELECT
                                                                    content_title,
                                                                    content_heading,
                                                                    content_text,
                                                                    content_file
                                                                    FROM "
    . TABLE_CONTENT_MANAGER . "
                                                                    WHERE content_group='"
    . REVOCATION_ID . "' " . $group_check . "
                                                                    AND languages_id='"
    . $_SESSION['languages_id'] . "'";

            $shop_content_query = xtc_db_query($shop_content_query);
            $shop_content_data = xtc_db_fetch_array($shop_content_query);

            if ($shop_content_data['content_file'] != '') {
                    ob_start();
                    if (strpos($shop_content_data['content_file'], '.txt'))
                            echo '<pre>';
                    include (DIR_FS_CATALOG . 'media/content/' . $shop_content_data['content_file']);
                    if (strpos($shop_content_data['content_file'], '.txt'))
                            echo '</pre>';
                    $revocation = ob_get_contents();
                    ob_end_clean();
            } else {
                    $revocation = $shop_content_data['content_text'];
            }

            $smarty->assign('REVOCATION', $revocation);
            $smarty->assign('REVOCATION_TITLE', $shop_content_data['content_heading']);
            //BOF - Hetfield - 2009-07-29 - SSL for Content-Links per getContentLink
            //$smarty->assign('REVOCATION_LINK', $main->getContentLink(REVOCATION_ID, MORE_INFO));
            $smarty->assign('REVOCATION_LINK', $main->getContentLink(REVOCATION_ID, MORE_INFO,'SSL'));
            //EOF - Hetfield - 2009-07-29 - SSL for Content-Links per getContentLink
           
            $shop_content_query = "SELECT
                                                                    content_title,
                                                                    content_heading,
                                                                    content_text,
                                                                    content_file
                                                                    FROM "
    . TABLE_CONTENT_MANAGER . "
                                                                    WHERE content_group='3' "
    . $group_check . "
                                                                    AND languages_id='"
    . $_SESSION['languages_id'] . "'";

            $shop_content_query = xtc_db_query($shop_content_query);
            $shop_content_data = xtc_db_fetch_array($shop_content_query);
           
            $smarty->assign('AGB_TITLE', $shop_content_data['content_heading']);
      //BOF - Hetfield - 2009-07-29 - SSL for Content-Links per getContentLink
            //$smarty->assign('AGB_LINK', $main->getContentLink(3, MORE_INFO));
            $smarty->assign('AGB_LINK', $main->getContentLink(3, MORE_INFO,'SSL'));
      //EOF - Hetfield - 2009-07-29 - SSL for Content-Links per getContentLink
    }

    $smarty->assign('language', $_SESSION['language']);
    $smarty->assign('PAYMENT_BLOCK', $payment_block);
    $smarty->caching = 0;
    $main_content = $smarty->fetch(CURRENT_TEMPLATE . '/module/checkout_confirmation.html');

    $smarty->assign('language', $_SESSION['language']);
    $smarty->assign('main_content', $main_content);
    $smarty->caching = 0;
    if (!defined('RM'))
            $smarty->load_filter('output', 'note');
    $smarty->display(CURRENT_TEMPLATE . '/index.html');
    include ('includes/application_bottom.php');
    ?>
    2 Antworten
    2814 Aufrufe
    05. Juni 2010, 09:37:12 von Martina
    14 Antworten
    9000 Aufrufe
    12. Oktober 2013, 12:34:28 von marc3
    1 Antworten
    4326 Aufrufe
    07. November 2008, 16:44:11 von Anonym
    11 Antworten
    5910 Aufrufe
    17. Dezember 2010, 11:59:54 von Tomcraft
               
    anything