Jump to content
xt:Commerce Community Forum

Tabellarische Versandkosten


opetzold

Recommended Posts

Hallo!

Das hat nur den Grund, da? man bei einigen Modulen noch Info-Texte eingeben kann, die dann in der Klammer angezeigt werden.

Beispiel: Wenn Du das Versandmodul "Freeamount" (zu Deutsch: Frachtfrei) installierst, dann kannst Du dort in der dazugeh?rigen PHP-Datei im lang/german/modules/shipping Ordner eine Variable namens MODULE_SHIPPING_FREECOUNT_TEXT_WAY angeben die dann als Info-Text in diesen Klammern angezeigt werden kann.

Ich hat z. B. das Modul in "Abholung" umbenannt und habe die Variable mit dem Text "Sie holen die Ware in unserer Gesch?ftsstelle ab" gef?llt.

Um diese Klammern (und damit auch den Infotext) abzuschaffen, mu?t Du folgendes tun:

Geh in den Hauptordner Deiner XT-Commerce Installation und ruf die Datei checkout_shipping.php auf.

Ab Zeile 130 sollte folgendes stehen:


       $_SESSION['shipping'] = array('id' => $_SESSION['shipping'],

                'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' (' . $quote[0]['methods'][0]['title'] . ')'),

                'cost' => $quote[0]['methods'][0]['cost']);

Mach aus diesen Zeilen einfach das hier:

       $_SESSION['shipping'] = array('id' => $_SESSION['shipping'],

                'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module']), // . ' (' . $quote[0]['methods'][0]['title'] . ')'),

                'cost' => $quote[0]['methods'][0]['cost']);

Schon bist Du die Klammern los...

Gru?

MarkusF

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...