lunikoff Posted October 10, 2005 Report Share Posted October 10, 2005 Hallo, bei der email die der Kunde bei bestellung bekommt und im shop steht bei versandart Deutsche Post und dahinter das gewicht. kann man das gewicht ausblenden, so da? nur noch deutsche post da steht??? Dank und Gru? Lunikoff Link to comment Share on other sites More sharing options...
hubbabubba Posted October 11, 2005 Report Share Posted October 11, 2005 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 More sharing options...
chinnaski Posted January 5, 2010 Report Share Posted January 5, 2010 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.