Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Leaderboard

Popular Content

Showing content with the highest reputation on 05/02/2011 in all areas

  1. Итак, начнём с того, что у нас в системе уже установлен Русский язык. Идём дальше: «Система > Локализация > Регионы» и добавляем ВСЕ субъекты Российской федерации (Автономные Округа и Области, Краи и Республики) всего их 86! Полный список Субъектов Российской Федерации, утверждённый EMS Почтой России, можно увидеть на странице с интерактивной картой. Не пугайтесь, в конце топика есть дамп sql с таблицей «zone», после импорта которого – получаем полный список: Далее, идём в меню: «Система >Локализация > Географические зоны», и создаём 6 тарифных зон - которые определены в системе EMS. (СОВЕТ: в поле "Название географической зоны" напишите просто: EMS Почта россии. Это, та строка - которая будет видна покупателю при оформлении заказа и выборе способа доставки. В строке "Описание" укажите Зону тарифа.) Затем, переходим в меню: «Дополнения > Доставка» и устанавливаем стандартный модуль «Доставка в зависимости от веса». Заходим в его настройки и видим, что в нём, отображаются только что созданные нами - тарифные зоны: Далее, всё просто. Открываем Тарифные зоны внутренней сети и выбираем Тарифы для зоны №... - в которой МЫ находимся (отправная точка посылки: ОТКУДА). Ниже, я указываю "Тарифы для зоны 0" (подходит только для тех, кто собирается отправлять почту из Москвы, Московской области и Санкт-Петербурга) 1:310.00,2:320.00,3:330.00,4:340.00,5:350.00,6:360.00,7:370.00,8:380.00,9:390.00,10:400.00,11:410.00,12:420.00,13:430.00,14:440.00,15:450.00,16:460.00,17:470.00,18:480.00,19:490.00,20:500.00,21:510.00,22:520.00,23:530.00,24:540.00,25:550.00,26:560.00,27:570.00,28:580.00,29:590.00,30:600.00,31:610.00 (ВНИМАНИЕ: вставлять тарифы - одной строкой, символы вначале и конце запрещены, пробелы не ставить.) А теперь пробуем то, что сделали: Дамп данных таблицы `zone`: zone.zip Всё.
    1 point
  2. Обсуждали блок информации... https://opencartforum.com/topic/2510-%D0%B8%D0%B7%D0%BC%D0%B5%D0%BD%D0%B5%D0%BD%D0%B8%D0%B5-%D1%86%D0%B2%D0%B5%D1%82%D0%B0-%D0%BF%D1%83%D0%BD%D0%BA%D1%82%D0%B0-%D0%BC%D0%B5%D0%BD%D1%8E-%D0%BC%D0%BE%D0%B4%D1%83%D0%BB%D1%8F-%D0%B8%D0%BD%D1%84%D0%BE%D1%80%D0%BC%D0%B0%D1%86%D0%B8%D1%8F/page__p__16099__fromsearch__1#entry16099
    1 point
  3. 1. Чтобы убрать вылидацию : Находите файл \www\catalog\controller\account\create.php Находите в районе 320 ой строки: private function validate() { if ((strlen(utf8_decode($this->request->post['firstname'])) < 1) || (strlen(utf8_decode($this->request->post['firstname'])) > 32)) { $this->error['firstname'] = $this->language->get('error_firstname'); } if ((strlen(utf8_decode($this->request->post['lastname'])) < 1) || (strlen(utf8_decode($this->request->post['lastname'])) > 32)) { $this->error['lastname'] = $this->language->get('error_lastname'); } if ((strlen(utf8_decode($this->request->post['email'])) > 96) || (!preg_match(EMAIL_PATTERN, $this->request->post['email']))) { $this->error['email'] = $this->language->get('error_email'); } if ($this->model_account_customer->getTotalCustomersByEmail($this->request->post['email'])) { $this->error['warning'] = $this->language->get('error_exists'); } if ((strlen(utf8_decode($this->request->post['telephone'])) < 3) || (strlen(utf8_decode($this->request->post['telephone'])) > 32)) { $this->error['telephone'] = $this->language->get('error_telephone'); } if ((strlen(utf8_decode($this->request->post['address_1'])) < 3) || (strlen(utf8_decode($this->request->post['address_1'])) > 128)) { $this->error['address_1'] = $this->language->get('error_address_1'); } if ((strlen(utf8_decode($this->request->post['city'])) < 3) || (strlen(utf8_decode($this->request->post['city'])) > 128)) { $this->error['city'] = $this->language->get('error_city'); } $this->load->model('localisation/country'); $country_info = $this->model_localisation_country->getCountry($this->request->post['country_id']); if ($country_info && $country_info['postcode_required']) { if ((strlen(utf8_decode($this->request->post['postcode'])) < 2) || (strlen(utf8_decode($this->request->post['postcode'])) > 10)) { $this->error['postcode'] = $this->language->get('error_postcode'); } } if ($this->request->post['country_id'] == 'FALSE') { $this->error['country'] = $this->language->get('error_country'); } if ($this->request->post['zone_id'] == 'FALSE') { $this->error['zone'] = $this->language->get('error_zone'); } if ((strlen(utf8_decode($this->request->post['password'])) < 4) || (strlen(utf8_decode($this->request->post['password'])) > 20)) { $this->error['password'] = $this->language->get('error_password'); } if ($this->request->post['confirm'] != $this->request->post['password']) { $this->error['confirm'] = $this->language->get('error_confirm'); } if ($this->config->get('config_account_id')) { $this->load->model('catalog/information'); $information_info = $this->model_catalog_information->getInformation($this->config->get('config_account_id')); if ($information_info) { if (!isset($this->request->post['agree'])) { $this->error['warning'] = sprintf($this->language->get('error_agree'), $information_info['title']); } } } if (!$this->error) { return TRUE; } else { return FALSE; } } Здесь можно снять обязательное заполнение какого-то поля, просто закомментировав его, например, чтобы не заполнять фамилию, надо поменять if ((strlen(utf8_decode($this->request->post['firstname'])) < 1) || (strlen(utf8_decode($this->request->post['firstname'])) > 32)) { $this->error['firstname'] = $this->language->get('error_firstname'); }на /* if ((strlen(utf8_decode($this->request->post['firstname'])) < 1) || (strlen(utf8_decode($this->request->post['firstname'])) > 32)) { $this->error['firstname'] = $this->language->get('error_firstname'); } */ Так проделываем для всех полей, которые нам не нужны(т.е. просто комментим их). 2. Чтобы поле не показывалось в форме регистрации: Находите файл \www\catalog\view\theme\default\template\account\create.tpl (default - ваша тема, может быть другой) В строках, которые хотим убрать, добавляем style="display:none" пример(убираем фамилию): меняем <tr> <td><span class="required">*</span> <?php echo $entry_lastname; ?></td> <td><input type="text" name="lastname" value="<?php echo $lastname; ?>" /> <?php if ($error_lastname) { ?> <span class="error"><?php echo $error_lastname; ?></span> <?php } ?></td> </tr>на <tr style="display:none"> <td><span class="required">*</span> <?php echo $entry_lastname; ?></td> <td><input type="text" name="lastname" value="<?php echo $lastname; ?>" /> <?php if ($error_lastname) { ?> <span class="error"><?php echo $error_lastname; ?></span> <?php } ?></td> </tr> 3. Ставим мне плюсик :rolleyes:
    1 point
  4. Принцип формирования полей письма. Нужен файл catalogmodelcheckoutorder.php В нем примерно на 269 строке стоит: $text .= $language->get('text_order_id') . ' ' . $order_id . "n"; - это номер ордера. Вставляем нужные нам поля после этой строчки: $text .= ' Имя : ' . $order_query->row['firstname'] . " " . $order_query->row['lastname'] . "n"; $text .= ' E-mail : ' . $order_query->row['email'] . "n"; $text .= ' Телефон : ' . $order_query->row['telephone'] . "n"; Для изменения текста письма клиенту правим файлcatalogviewthemedefaulttemplatemailorder_confirm.tpl например строки где находиться товар и его артикул: <tr style="background-color: #CCCCCC;"> <th align="left" style="padding: 0.3em; color: #FFFFFF;"><?php echo $column_product; ?></th> <th align="left" style="width: 20%; color: #FFFFFF;"><?php echo $column_model; ?></th> <th align="right" style="width: 15%; padding: 0.3em; color: #FFFFFF;"><?php echo $column_price; ?></th> <th align="right" style="width: 15%; padding: 0.3em; color: #FFFFFF;"><?php echo $column_quantity; ?></th> <th align="right" style="width: 20%; padding: 0.3em; color: #FFFFFF;"><?php echo $column_total; ?></th> </tr>
    1 point
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.