WISYWIG Posted March 20, 2018 Share Posted March 20, 2018 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 More sharing options...
eleazar Posted March 20, 2018 Share Posted March 20, 2018 So einfach ist das nicht. Dafür gibt es kein "Template". Das ist eine vorformatierte Variable, für deren Änderung du Eingriffe in den Core vornehmen musst. Link to comment Share on other sites More sharing options...
WISYWIG Posted March 20, 2018 Author Share Posted March 20, 2018 OK, danke. Und wo finde ich die? Link to comment Share on other sites More sharing options...
eleazar Posted March 20, 2018 Share Posted March 20, 2018 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], ); } 1 Link to comment Share on other sites More sharing options...
WISYWIG Posted March 21, 2018 Author Share Posted March 21, 2018 Super, danke! Ich probiere es aus Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now