freelancer Posted April 16, 2013 Share Posted April 16, 2013 Скачать / Купить дополнение фильтр товаров в админке расширение позволяет помимо прочего фильтровать товары в админке по производителю, категории. поиск по искомой подстроке в названии/ модели в любой части слова расширение не перезаписывает файлы, не использует vQmod, работает на ajax. Добавил freelancer Добавлено 16.04.2013 Категория Фильтры 11 Link to comment Share on other sites More sharing options... kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 Все стало и прекрасно работает. А можете еще немного доработать? - Включить возможность отсортировать товары без категории и без производителя. - В колонке категорий добавить отображения полного адреса категории. (Категория -> Подкатегория 1 -> Подкатегория 1.1) И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 Warning: Missing argument 1 for ModelCatalogCategory::getCategories(), called in /адрес сайта/admin/controller/catalog/product_ajax.php on line 505 and defined in /адрес сайта/admin/model/catalog/category.phpon line 207 все работает но ошибка вверху удручает ) Version 1.5.5.1 Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 Warning: Missing argument 1 for ModelCatalogCategory::getCategories(), called in /адрес сайта/admin/controller/catalog/product_ajax.php on line 505 and defined in /адрес сайта/admin/model/catalog/category.phpon line 207 все работает но ошибка вверху удручает ) Version 1.5.5.1 нет этой версии под рукой. покажите сигнатуру метода getCategories из модели 1 Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 на 207 строчке вот такая ботва ) я только начал разбираться с opencart public function getCategories($data) { $sql = "SELECT cp.category_id AS category_id, GROUP_CONCAT(cd1.name ORDER BY cp.level SEPARATOR ' > ') AS name, c.parent_id, c.sort_order FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "category c ON (cp.path_id = c.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd1 ON (c.category_id = cd1.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd2 ON (cp.category_id = cd2.category_id) WHERE cd1.language_id = '" . (int)$this->config->get('config_language_id') . "' AND cd2.language_id = '" . (int)$this->config->get('config_language_id') . "'"; if (!empty($data['filter_name'])) { $sql .= " AND cd2.name LIKE '" . $this->db->escape($data['filter_name']) . "%'"; } $sql .= " GROUP BY cp.category_id ORDER BY name"; ИТД ИТП Link to comment Share on other sites More sharing options... kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял Это я ошибся, все правильно. Отображаются две, через запятую. Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 тогда в фильтре в 505 строке замените на $this->data['categories'] = $this->model_catalog_category->getCategories(array()); 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 $this->data['categories'] = $this->model_catalog_category->getCategories(""); поставил 2 кавычки в вызове, ошибка пропала все работает. /адрес сайта/admin/controller/catalog/product_ajax.php 505 строчка исправил на array() все ок ) спасибо автору у меня планируется свыше 2300 товаров и такой фильтр очень поможет Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 2 16-04-2013 добавил фильтр по товарам без категорий, производителей; вывод категорий с учетом родительских 2 Link to comment Share on other sites More sharing options... gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options... pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 Все стало и прекрасно работает. А можете еще немного доработать? - Включить возможность отсортировать товары без категории и без производителя. - В колонке категорий добавить отображения полного адреса категории. (Категория -> Подкатегория 1 -> Подкатегория 1.1) И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. Link to comment Share on other sites More sharing options...
zellin61 Posted April 16, 2013 Share Posted April 16, 2013 Warning: Missing argument 1 for ModelCatalogCategory::getCategories(), called in /адрес сайта/admin/controller/catalog/product_ajax.php on line 505 and defined in /адрес сайта/admin/model/catalog/category.phpon line 207 все работает но ошибка вверху удручает ) Version 1.5.5.1 Link to comment Share on other sites More sharing options...
freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 Warning: Missing argument 1 for ModelCatalogCategory::getCategories(), called in /адрес сайта/admin/controller/catalog/product_ajax.php on line 505 and defined in /адрес сайта/admin/model/catalog/category.phpon line 207 все работает но ошибка вверху удручает ) Version 1.5.5.1 нет этой версии под рукой. покажите сигнатуру метода getCategories из модели 1 Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 на 207 строчке вот такая ботва ) я только начал разбираться с opencart public function getCategories($data) { $sql = "SELECT cp.category_id AS category_id, GROUP_CONCAT(cd1.name ORDER BY cp.level SEPARATOR ' > ') AS name, c.parent_id, c.sort_order FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "category c ON (cp.path_id = c.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd1 ON (c.category_id = cd1.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd2 ON (cp.category_id = cd2.category_id) WHERE cd1.language_id = '" . (int)$this->config->get('config_language_id') . "' AND cd2.language_id = '" . (int)$this->config->get('config_language_id') . "'"; if (!empty($data['filter_name'])) { $sql .= " AND cd2.name LIKE '" . $this->db->escape($data['filter_name']) . "%'"; } $sql .= " GROUP BY cp.category_id ORDER BY name"; ИТД ИТП Link to comment Share on other sites More sharing options... kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял Это я ошибся, все правильно. Отображаются две, через запятую. Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 тогда в фильтре в 505 строке замените на $this->data['categories'] = $this->model_catalog_category->getCategories(array()); 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 $this->data['categories'] = $this->model_catalog_category->getCategories(""); поставил 2 кавычки в вызове, ошибка пропала все работает. /адрес сайта/admin/controller/catalog/product_ajax.php 505 строчка исправил на array() все ок ) спасибо автору у меня планируется свыше 2300 товаров и такой фильтр очень поможет Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 2 16-04-2013 добавил фильтр по товарам без категорий, производителей; вывод категорий с учетом родительских 2 Link to comment Share on other sites More sharing options... gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options... pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 на 207 строчке вот такая ботва ) я только начал разбираться с opencart public function getCategories($data) { $sql = "SELECT cp.category_id AS category_id, GROUP_CONCAT(cd1.name ORDER BY cp.level SEPARATOR ' > ') AS name, c.parent_id, c.sort_order FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "category c ON (cp.path_id = c.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd1 ON (c.category_id = cd1.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd2 ON (cp.category_id = cd2.category_id) WHERE cd1.language_id = '" . (int)$this->config->get('config_language_id') . "' AND cd2.language_id = '" . (int)$this->config->get('config_language_id') . "'"; if (!empty($data['filter_name'])) { $sql .= " AND cd2.name LIKE '" . $this->db->escape($data['filter_name']) . "%'"; } $sql .= " GROUP BY cp.category_id ORDER BY name"; ИТД ИТП Link to comment Share on other sites More sharing options... kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял Это я ошибся, все правильно. Отображаются две, через запятую. Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 тогда в фильтре в 505 строке замените на $this->data['categories'] = $this->model_catalog_category->getCategories(array()); 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 $this->data['categories'] = $this->model_catalog_category->getCategories(""); поставил 2 кавычки в вызове, ошибка пропала все работает. /адрес сайта/admin/controller/catalog/product_ajax.php 505 строчка исправил на array() все ок ) спасибо автору у меня планируется свыше 2300 товаров и такой фильтр очень поможет Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 2 16-04-2013 добавил фильтр по товарам без категорий, производителей; вывод категорий с учетом родительских 2 Link to comment Share on other sites More sharing options... gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options... pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
zellin61 Posted April 16, 2013 Share Posted April 16, 2013 на 207 строчке вот такая ботва ) я только начал разбираться с opencart public function getCategories($data) { $sql = "SELECT cp.category_id AS category_id, GROUP_CONCAT(cd1.name ORDER BY cp.level SEPARATOR ' > ') AS name, c.parent_id, c.sort_order FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "category c ON (cp.path_id = c.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd1 ON (c.category_id = cd1.category_id) LEFT JOIN " . DB_PREFIX . "category_description cd2 ON (cp.category_id = cd2.category_id) WHERE cd1.language_id = '" . (int)$this->config->get('config_language_id') . "' AND cd2.language_id = '" . (int)$this->config->get('config_language_id') . "'"; if (!empty($data['filter_name'])) { $sql .= " AND cd2.name LIKE '" . $this->db->escape($data['filter_name']) . "%'"; } $sql .= " GROUP BY cp.category_id ORDER BY name"; ИТД ИТП Link to comment Share on other sites More sharing options...
kopaweb19 Posted April 16, 2013 Share Posted April 16, 2013 И еще, когда товар в двух категориях, то в таблице отображается только одна, главная. это не понял Это я ошибся, все правильно. Отображаются две, через запятую. Link to comment Share on other sites More sharing options...
freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 тогда в фильтре в 505 строке замените на $this->data['categories'] = $this->model_catalog_category->getCategories(array()); 1 Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 $this->data['categories'] = $this->model_catalog_category->getCategories(""); поставил 2 кавычки в вызове, ошибка пропала все работает. /адрес сайта/admin/controller/catalog/product_ajax.php 505 строчка исправил на array() все ок ) спасибо автору у меня планируется свыше 2300 товаров и такой фильтр очень поможет Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 2 16-04-2013 добавил фильтр по товарам без категорий, производителей; вывод категорий с учетом родительских 2 Link to comment Share on other sites More sharing options... gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options... pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
zellin61 Posted April 16, 2013 Share Posted April 16, 2013 $this->data['categories'] = $this->model_catalog_category->getCategories(""); поставил 2 кавычки в вызове, ошибка пропала все работает. /адрес сайта/admin/controller/catalog/product_ajax.php 505 строчка исправил на array() все ок ) спасибо автору у меня планируется свыше 2300 товаров и такой фильтр очень поможет Link to comment Share on other sites More sharing options...
freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 2 16-04-2013 добавил фильтр по товарам без категорий, производителей; вывод категорий с учетом родительских 2 Link to comment Share on other sites More sharing options... gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options... pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
gonzo Posted April 16, 2013 Share Posted April 16, 2013 Странно, я залил все файлы на хост, но фильтр так и не поивился, в чем может быть проблема ostory 1.5.4.1 Link to comment Share on other sites More sharing options...
pashast Posted April 16, 2013 Share Posted April 16, 2013 Фильтр доступен и работает по адресу site/index.php?route=catalog/product_ajax&token=xxxxxx просто нужно немного подправит контролер хедера, я так понимаю . Или автор не все залил, может быть )) в любом случае спасибо, работает отлично Link to comment Share on other sites More sharing options... freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
freelancer Posted April 16, 2013 Author Share Posted April 16, 2013 intall.txt забыл вложить ) счас найдем Link to comment Share on other sites More sharing options... icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options... zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777 × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × 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. I accept
icqmag Posted April 16, 2013 Share Posted April 16, 2013 что то нет инсталла) Link to comment Share on other sites More sharing options...
zellin61 Posted April 16, 2013 Share Posted April 16, 2013 (edited) Постараюсь по памяти восстановить 1. копируем все что в архиве на сайт 2. выставляем права - в админке СИСТЕМА -> ПОЛЬЗОВАТЕЛИ -> ГРУППЫ ПОЛЬЗОВАТЕЛЕЙ Выставляем галочки на catalog/product_ajax 3. в admin/controller/catalog/product.php ищем строку public function index() { после нее ставим $this->redirect($this->url->link('catalog/product_ajax', 'token=' . $this->session->data['token'], 'SSL')); 4. для перевода правим файл /admin/language/russian/catalog/product.php ищем строки: $_['column_action'] = 'Действие'; добавляем после нее $_['column_category'] = 'Категория'; $_['column_manufacturer'] = 'Производитель'; вроде ничего не забыл. ) если что, поправляйте. Архив с инструкцией на ноуте остался на работе. У кого проблемы на версии 1.5.5.1 см сообщения выше насчет ошибки в шапке админки, автор плагина помог решить оперативно, у меня все работает просто отлично. Прикрепил инструкцию которая была в архиве. install.txt Edited April 17, 2013 by zellin61 Link to comment Share on other sites More sharing options...
freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 вложил install в архив 1 Link to comment Share on other sites More sharing options... noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Chameleon - Responsive & Multipurpose Opencart Template + Quick Start By 29aleksey Wayforpay API оплата для Opencart 2.3, 3.x By bogdan281989 TgMarket - Модуль интернет магазина в телеграмме. By Rassol2 ShowCase – Responsive / Multipurpose Opencart Template By octemplates Telnotification By Yevhenii_7777
noVe Posted April 17, 2013 Share Posted April 17, 2013 Спасибо. Было что-то похожее на оф. сайте, но там немного криво фильтровалось (не все товары - если тех было много). Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Filters фильтр товаров в админке [Поддержка]
kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 У меня в логе появились ошибки: PHP Notice: Undefined index: parent_id in /var/www/****/admin/model/catalog/category.php on line 129 PHP Notice: Undefined index: name in /var/www/****/admin/model/catalog/category.php on line 132 Link to comment Share on other sites More sharing options...
freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 версия движка? Link to comment Share on other sites More sharing options... kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options... unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options... freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content фильтр OCFilter - Модуль фильтра товаров [Поддержка] 1 2 3 4 236 By SooR, September 26, 2016 ocfilter seo фильтр 5,883 replies 726,545 views Stasolo Tuesday at 01:43 PM [Поддержка] ЧПУ админка By esculapra, December 25, 2022 0 replies 101 views esculapra January 10 [Поддержка] Админка - сокрытие полей в карточке товара By chukcha, November 27, 2021 16 replies 548 views chukcha January 12 Фильтр Страны и Регионы (админка) By chukcha, May 24, 2020 0 comments 1,201 views chukcha May 24, 2020 seo фильтр Фильтр товаров - FilterVier_SEO (для OpenCart 2.x-3.x) [Поддержка] 1 2 3 4 61 By vier, December 18, 2017 фильтр товаров фильтр по цене (and 6 more) Tagged with: фильтр товаров фильтр по цене фильтр по атрибутам фильтр по опциям filtrvier vier seo фильтр 1,503 replies 131,208 views vier Tuesday at 01:35 PM Recently Browsing 0 members No registered users viewing this page.
kopaweb19 Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.3.1 Link to comment Share on other sites More sharing options...
unkind Posted April 17, 2013 Share Posted April 17, 2013 ocStore 1.5.4.1 Отлично работает! Автору очередной РЕСПЕКТ и + в репу :) Link to comment Share on other sites More sharing options...
icqmag Posted April 17, 2013 Share Posted April 17, 2013 :-) пора логотип с лицом автора ставить)) спасибо) да еще и бесплатно, что повторюсь не в его стиле) Link to comment Share on other sites More sharing options...
freelancer Posted April 17, 2013 Author Share Posted April 17, 2013 а что в моём стиле? вы эту страницу открывали? https://opencartforum.com/index.php?app=core&module=search&do=user_activity&search_app=downloads&mid=12381&userMode=all 4 Link to comment Share on other sites More sharing options... icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options... hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 Next Page 1 of 8 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0
icqmag Posted April 17, 2013 Share Posted April 17, 2013 Открывали. В твоем стиле все платно) фильтр мега раз вышел, фильтр хотел купить, натянуть его на дизайн ты сказал 3000 , после этого я так считаю)) еще раз спасибо. ) 1 Link to comment Share on other sites More sharing options...
hunter14 Posted April 17, 2013 Share Posted April 17, 2013 Того, кто работает и делает что-то полезное - обидеть легко. Не устраивает цена, уважаемый icqmag- не покупайте. А freelancer-у - уважение и плюсик! Спасибо! Link to comment Share on other sites More sharing options...
Recommended Posts