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

hu7man

Newbie
  
  • Posts

    40
  • Joined

  • Last visited

Everything posted by hu7man

  1. Создать модуль, позволяющий заказывать товар в кредит. Пример работы такого модуля - http://sity.by/index.php?cat=17&id=8835 Нажать "в кредит" Есть предложение допилить модуль https://opencartforum.com/files/file/1282-multicredit-%D0%BF%D0%BE%D0%BA%D1%83%D0%BF%D0%BA%D0%B0-%D0%B2-%D0%BA%D1%80%D0%B5%D0%B4%D0%B8%D1%82/ Жду предложений по цене и срокам. Надеюсь у кого-то возникала подобная задача.
  2. У меня есть модуль filter pro mega, он не видит опции созданные этим модулем. Можете предложить решение? Готов заплатить адекватную сумму.
  3. Здравствуйте, нужно вывести в карте товара все товары из его категории, вот в таком виде http://prntscr.com/3rqud1 также нужно добавить текстовое поле (textrarea) на страницу категории, в которой будет второе описание (идущее после товаров) Готов рассмотреть ваши предложения по цене/срокам и условия сотрудничества. Пишите в лс, пож-ста.
  4. Здравствуйте! Нужна доработка модуля "приветствие", чтобы можно было сделать тест для юзера при первом заходе на сайт. Пример вот http://www.jewelmint.com/ нужно ввести свой мейл, откроется тест. Osstore 1.5.4.1 либо свежая версия. Сообщите в лс бюджеты и срок, пожалуйста.
  5. У меня не сработал данный способ, версия osstore 1541, сделал всё 1 в 1, создал лейаут, ид16, подключил категорию на этот лейаут, отредактировал category.php в результате выводится тот же самый шаблон category.tpl, а subcategory.tpl нет. upd в версии 1541 нужно менять строки 350 в шаблоне category.php всё подключилось!
  6. Привет! Нужно настроить импорт товаров из xls. версия osstore 1.5.4.1 Нужен человек. уже реализовавший подобное. Общаться предпочитаю по скайпу или аське, контакты передам в личке.
  7. Здравствуйте, подскажите, версия 2,75 без ограничений по времени работает? Я установил сейчас её, работает вроде. Мне как и некоторым отписавшимся здесь пользователям не подходит постоянное обновление. Я делаю сайт для зака, сдаю его и забываю. А ему соответственно не комильфо искать какие-то модули и обновлять.
  8. Здравствуйте, уважаемые мастера! Есть модуль подписки на новости, нужно чтобы почты подписчиков выводились в админке. Модуль (если интересно) разработал ALEGZ для версии 1.5.2.1 Интересует безвозмездная помощь.
  9. Здравствуйте, нужно вывести в категорию 2 значения из скидки (задается в админке в карточке товара): количество, новую цену. Версия ocStore 1.5.4.1 Интересует цена вопроса и сроки.
  10. http://drupal-site.ru/index.php?route=information/information&information_id=9 страница на которой показывается модуль новости, выводятся картинки. есть ещё страница "все новости" где картинки не выводятся http://drupal-site.ru/index.php?route=information/news код файла /controller/information/news.php <?php class ControllerInformationNews extends Controller { public function index() { $this->load->language('information/news'); $this->load->model('fido/news'); $this->data['breadcrumbs'] = array(); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('common/home'), 'text' => $this->language->get('text_home'), 'separator' => FALSE ); if (isset($this->request->get['news_id'])) { $news_id = $this->request->get['news_id']; } else { $news_id = 0; } $news_info = $this->model_fido_news->getNewsStory($news_id); if ($news_info) { $this->document->setTitle($news_info['title']); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('information/news'), 'text' => $this->language->get('heading_title'), 'separator' => $this->language->get('text_separator') ); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('information/news', 'news_id=' . $this->request->get['news_id']), 'text' => $news_info['title'], 'separator' => $this->language->get('text_separator') ); $this->data['news_info'] = $news_info; $this->data['heading_title'] = $news_info['title']; $this->document->setDescription($news_info['meta_description']); $this->data['description'] = html_entity_decode($news_info['description']); $this->load->model('tool/image'); if ($news_info['image']) { $this->data['image'] = TRUE; } else { $this->data['image'] = FALSE; } $this->data['min_height'] = $this->config->get('news_thumb_height'); $this->data['thumb'] = $this->model_tool_image->resize($news_info['image'], $this->config->get('news_thumb_width'), $this->config->get('news_thumb_height')); $this->data['popup'] = $this->model_tool_image->resize($news_info['image'], $this->config->get('news_popup_width'), $this->config->get('news_popup_height')); $this->data['button_news'] = $this->language->get('button_news'); $this->data['news'] = $this->url->link('information/news'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/information/news.tpl')) { $this->template = $this->config->get('config_template') . '/template/information/news.tpl'; } else { $this->template = 'default/template/information/news.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } else { $news_data = $this->model_fido_news->getNews(); if ($news_data) { foreach ($news_data as $result) { $cut_descr_symbols = $this->config->get('news_headline_chars'); $descr_plaintext = strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')); if( mb_strlen($descr_plaintext, 'UTF-8') > $cut_descr_symbols ) { $descr_plaintext = mb_substr($descr_plaintext, 0, $cut_descr_symbols, 'UTF-8') . ' …'; } $this->data['news_data'][] = array( 'image' => $result['image'], 'title' => $result['title'], 'description' => $descr_plaintext, 'href' => $this->url->link('information/news', 'news_id=' . $result['news_id']), 'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added'])) ); } $this->document->setTitle($this->language->get('heading_title')); $this->document->breadcrumbs[] = array( 'href' => $this->url->link('information/news'), 'text' => $this->language->get('heading_title'), 'separator' => $this->language->get('text_separator') ); $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_read_more'] = $this->language->get('text_read_more'); $this->data['text_date_added'] = $this->language->get('text_date_added'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['continue'] = $this->url->link('common/home'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/information/news.tpl')) { $this->template = $this->config->get('config_template') . '/template/information/news.tpl'; } else { $this->template = 'default/template/information/news.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } else { $this->document->setTitle($this->language->get('text_error')); $this->document->breadcrumbs[] = array( 'href' => $this->url->link('information/news'), 'text' => $this->language->get('text_error'), 'separator' => $this->language->get('text_separator') ); $this->data['heading_title'] = $this->language->get('text_error'); $this->data['text_error'] = $this->language->get('text_error'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['continue'] = $this->url->link('common/home'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) { $this->template = $this->config->get('config_template') . '/template/error/not_found.tpl'; } else { $this->template = 'default/template/error/not_found.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } } } ?> если выводить в 93 строке картинку этим способом: 'image' => $this->model_tool_image->resize($result['image'], 70, 70), грузится белая страница. просто интересно, почему не работает этот код?
×
×
  • 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.