Jump to content
xt:Commerce Community Forum

Gewicht


lunikoff

Recommended Posts

Gehe in die Datei:

includes/modules/shipping/dp.php

Suche den Codeabschnitt (ca. Zeile 107):

   $this->quotes = array('id' => $this->code,

              'module' => MODULE_SHIPPING_DP_TEXT_TITLE,

              'methods' => array(array('id' => $this->code,

                           'title' => $shipping_method . ' (' . $shipping_num_boxes . ' x ' . $shipping_weight . ' ' . MODULE_SHIPPING_DP_TEXT_UNITS .')',

                           'cost' => $shipping_cost * $shipping_num_boxes)));
und ?ndere ihn zu:
   $this->quotes = array('id' => $this->code,

              'module' => MODULE_SHIPPING_DP_TEXT_TITLE,

              'methods' => array(array('id' => $this->code,

//                           'title' => $shipping_method . ' (' . $shipping_num_boxes . ' x ' . $shipping_weight . ' ' . MODULE_SHIPPING_DP_TEXT_UNITS .')',

                           'title' => $shipping_method,

                           'cost' => $shipping_cost * $shipping_num_boxes)));

Gru?

Hen

Link to comment
Share on other sites

  • 4 years later...

Will man nur das Gewicht ausblenden aber den Text Versand nach DE: Stehen lassen, empfiehlt es sich nicht auszukommentieren, sondern die Zeile wie folgt zu ändern:

$this->quotes = array('id' => $this->code,
'module' => MODULE_SHIPPING_DP2_TEXT_TITLE,
'methods' => array(array('id' => $this->code,
'title' => $shipping_method ,
'cost' => $shipping_cost * $shipping_num_boxes)));[/PHP]

Genau so verfahren bei anderen Versandarten & Versandzonen ;)

chinna

Link to comment
Share on other sites

Archived

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

×
  • Create New...