Modify ↓
#1837 closed Bug/Fehler (fixed)
Versandkostenfrei Titel in Modul ot_shipping fehlt auf checkout_confirmation Seite
| Reported by: | Torsten Riemer | Owned by: | Gerhard Waldemair |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.6.0 |
| Component: | Module | Version: | trunk |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Wenn man über das Modul ot_shipping die Versandkostenfrei-Grenze aktiviert, dann wird auf der checkout_confirmation Seite unter "Versandart: (Bearbeiten)" der Text "Versandkosten" angezeigt anstatt "Versandkostenfrei"
Attachments (1)
Change History (5)
by , 6 years ago
| Attachment: | Bestätigung_-_2020-06-09_12.20.48.jpg added |
|---|
comment:3 by , 5 years ago
| Summary: | Versandkostenfrei Titel in Modul ot_shipping fehlt auch checkout_confirmation Seite → Versandkostenfrei Titel in Modul ot_shipping fehlt auf checkout_confirmation Seite |
|---|
Note:
See TracTickets
for help on using tickets.

Gulliver72 hat eine Lösung im Thema Versandart-Anzeige im Checkout vorgeschlagen, die nach meinen Versuchen funktioniert: in der checkout_confirmation.php ab Zeile 168:
if ($_SESSION['sendto'] != false) { if ($order->info['shipping_method']) { //shipping method $shipping_class = explode('_', $order->info['shipping_class']); if ($order->info['shipping_class'] != '' && $shipping_class[0] != 'free') { $smarty->assign('SHIPPING_METHOD', $order->info['shipping_method']); } else { include_once (DIR_FS_CATALOG . 'lang/'.$order->info['language'].'/modules/order_total/ot_shipping.php'); $smarty->assign('SHIPPING_METHOD', FREE_SHIPPING_TITLE); } $smarty->assign('SHIPPING_CLASS', $order->info['shipping_class']); $smarty->assign('SHIPPING_EDIT', xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')); } }