Категории |
checkout_confirmation.php - поменять местами строки <tr>Доброй ночи, столкнулся с проблемой при выводе счета при заказе. В файле modules\order_total\ot_total\ot_total.php function process() { global $order, $osPrice; if ($_SESSION['customers_status']['customers_status_show_price_tax'] != 0) { $this->output[] = array('title' => $this->title . ':', 'text' => '<b>' . $osPrice->Format($order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total'],false)); } if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 1) { $this->output[] = array('title' => MODULE_ORDER_TOTAL_TOTAL_TITLE_NO_TAX_BRUTTO . ':', 'text' => '<b>' . $osPrice->Format($order->info['tax']+$order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total']+$order->info['tax'],false)); } if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 0) { $this->output[] = array('title' => MODULE_ORDER_TOTAL_TOTAL_TITLE_NO_TAX . ':', 'text' => '<b>' . $osPrice->Format($order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total'], false)); } } на function process() { global $order, $osPrice; if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 1) { $this->output[] = array('title' => MODULE_ORDER_TOTAL_TOTAL_TITLE_NO_TAX_BRUTTO . ':', 'text' => '<b>' . $osPrice->Format($order->info['tax']+$order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total']+$order->info['tax'],false)); } if ($_SESSION['customers_status']['customers_status_show_price_tax'] == 0 && $_SESSION['customers_status']['customers_status_add_tax_ot'] == 0) { $this->output[] = array('title' => MODULE_ORDER_TOTAL_TOTAL_TITLE_NO_TAX . ':', 'text' => '<b>' . $osPrice->Format($order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total'], false)); } if ($_SESSION['customers_status']['customers_status_show_price_tax'] != 0) { $this->output[] = array('title' => $this->title . ':', 'text' => '<b>' . $osPrice->Format($order->info['total'],true) . '</b>', 'value' => $osPrice->Format($order->info['total'],false)); } } Подскажите пожалуйста тогда как можно сделать "Атрибуты" обязательными для заполнения? Это не знаю. Нужно ковырять там все. Стандартно да же вывода сообщений нет, что нужно выбирать атрибут. NeBox, спасибо! ;) А как убрать надпись "при предварительной оплате заказа" из Почта России - наложный платёж ? Или поменять на другую. Подскажите пожалуйста в каком файле смотреть нужно ? modules/shipping/ruspost/ru.php modules/shipping/ruspost/ru.php это вроде Российская почта, которая бандероли предлагает. А мне нужно в Почта России - наложный платёж. modules/shipping/russianpostpf/ Вы в modules/shipping/russianpostpf/ корректировали ? Я пытался, но что то не выходит. Подскажите пожалуйста какую именно строчку нужно переписать или удалить. А приложите скриншот, просто мы видимо не до конца др друга понимаем) Вот эту надпись (подчёркнуто красным) нужно убрать или переписать. В каком файле и в каком месте это можно сделать ? Подскажите пожалуйста. modules/shipping/russianpostprepay/ru.php Такого modules/shipping/russianpostprepay/lang.php у меня нет. Есть modules/shipping/russianpostprepay/ru.php и modules/shipping/russianpostprepay/russianpostprepay.php Эмм...не, к сожалению я не знаю, попробуйте отдельный топик сделать с описанием задачи. Как-то делал что-то подобное, пришлось копаться еще в коде в других файлах. А в каком именно не подскажете ? |
|