MSLED Posted August 7, 2014 Share Posted August 7, 2014 Witam, chciałbym przerobić treść tak aby widoczne było jedynie towar, ilość oraz adres dostawy. Problem w tym, że nazwa towaru jego cena i ilość, zasiągana jest jedną zmienną {items} wie ktoś może jak sobie z tym poradzić? Link to comment Share on other sites More sharing options...
vekia Posted August 8, 2014 Share Posted August 8, 2014 w tym przypadku konieczna jest zmiana pliku php: mailalerts.php $items_table .= '<tr style="background-color:'.($key % 2 ? '#DDE2E6' : '#EBECEE').';"> <td style="padding:0.6em 0.4em;">'.$product['product_reference'].'</td> <td style="padding:0.6em 0.4em;"> <strong>' .$product['product_name'].(isset($product['attributes_small']) ? ' '.$product['attributes_small'] : '').(!empty($customization_text) ? '<br />'.$customization_text : ''). '</strong> </td> <td style="padding:0.6em 0.4em; text-align:right;">'.Tools::displayPrice($unit_price, $currency, false).'</td> <td style="padding:0.6em 0.4em; text-align:center;">'.(int)$product['product_quantity'].'</td> <td style="padding:0.6em 0.4em; text-align:right;">'.Tools::displayPrice(($unit_price * $product['product_quantity']), $currency, false).'</td> </tr>'; } foreach ($params['order']->getCartRules() as $discount) { $items_table .= '<tr style="background-color:#EBECEE;"> <td colspan="4" style="padding:0.6em 0.4em; text-align:right;">'.$this->l('Voucher code:').' '.$discount['name'].'</td> <td style="padding:0.6em 0.4em; text-align:right;">-'.Tools::displayPrice($discount['value'], $currency, false).'</td> </tr>'; } usuwamy niepotrzebne kolumny Link to comment Share on other sites More sharing options...
MSLED Posted August 8, 2014 Author Share Posted August 8, 2014 (edited) yyyyy a gdzie ten plik jest bo jakoś go nie widzę w katalogu z modułem?! EDIT: znalazłem Dzięki Edited August 8, 2014 by MSLED (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts