Jump to content

Recommended Posts

Hallo

 

In der order_conf.html werden mit {products} die Produkte in der Bestellbestätigung E-Mail aufgelistet.

Wo aber ist das Template für {products}? Ich möchte die Spalten "Stückpreis" und "Gesamtpreis" entfernen.

Vielen Dank!

Link to comment
Share on other sites

Die findest du in der Datei /controllers/admin/AdminOrdersController.php, in 1.7 so etwa ab Zeile 1035, in 1.6.1x etwa ab Zeile 969. Du solltest aber wissen, was du tust, denn vermutlich verschwinden die Angaben dann nicht nur in der order_conf.

AdminOrdersController.php said:

foreach ($full_product_list as $id_order_detail) {
                                $order_detail = new OrderDetail((int)$id_order_detail);
                                $product_list[$id_order_detail] = array(
                                    'id_order_detail' => $id_order_detail,
                                    'quantity' => $full_quantity_list[$id_order_detail],
                                    'unit_price' => $order_detail->unit_price_tax_excl,
                                    'amount' => isset($amount) ? $amount : $order_detail->unit_price_tax_incl * $full_quantity_list[$id_order_detail],

                                );
                       }

  • Thanks 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...