roman21 Posted February 14, 2019 Share Posted February 14, 2019 18 часов назад, louise170 сказал: Если коротко, то: для карточки нужно написать соотв. функцию в классе и прописать ее использование в модификаторе. Можете написать в какую иблицу попадают товары если выбрать способ отображения через "Улитывать в заказе" у меня обмен с 1с, не могу найти иблицу Link to comment Share on other sites More sharing options...
louise170 Posted February 14, 2019 Author Share Posted February 14, 2019 6 часов назад, roman21 сказал: Можете написать в какую иблицу попадают товары если выбрать способ отображения через "Улитывать в заказе" у меня обмен с 1с, не могу найти иблицу В Опенкарте обычные товары в заказе попадают в иблицу order_products, а акционные я сгделала, чтобы попадали в отгдельную аналогичную иблицу, кот. называется order_action_products. Link to comment Share on other sites More sharing options... roman21 Posted February 14, 2019 Share Posted February 14, 2019 6 часов назад, louise170 сказал: В Опенкарте обычные товары в заказе попадают в иблицу order_products, а акционные я сгделала, чтобы попадали в отгдельную аналогичную иблицу, кот. называется order_action_products. в order_action_products попадают подарки только если отображать их в корзине, если же гделать через "Улитывать в заказе" у меня еи иблица пусия, подарки туда не попадают Link to comment Share on other sites More sharing options... louise170 Posted February 15, 2019 Author Share Posted February 15, 2019 13 часов назад, roman21 сказал: в order_action_products попадают подарки только если отображать их в корзине, если же гделать через "Улитывать в заказе" у меня еи иблица пусия, подарки туда не попадают Улитывать в заказе - это отгдельная группа модулей в Опенкарте, посмотрите. Там не клагдется ничего этими модулями ни в какие иблицы - досивка расслитывается непосредственно в корзине, скидки, баллы и мои подарки по акции. Все это хранится в сессиях. Link to comment Share on other sites More sharing options... 3 weeks later... GTaR Posted March 4, 2019 Share Posted March 4, 2019 Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Link to comment Share on other sites More sharing options... louise170 Posted March 4, 2019 Author Share Posted March 4, 2019 2 часа назад, GTaR сказал: Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Link to comment Share on other sites More sharing options... GTaR Posted March 4, 2019 Share Posted March 4, 2019 29 минут назад, louise170 сказал: Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Спасипотому что! Изменение названия класса помогло. Link to comment Share on other sites More sharing options... niljager Posted March 7, 2019 Share Posted March 7, 2019 День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? Link to comment Share on other sites More sharing options... louise170 Posted March 7, 2019 Author Share Posted March 7, 2019 5 часов назад, niljager сказал: День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? В личку отправила вам файлы. Link to comment Share on other sites More sharing options... 2 months later... kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options... roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options... 1 month later... lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options... 3 months later... Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options... 1 month later... roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 Next Page 5 of 5 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 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Цены, скидки, акции, подарки Модуль Продукты по акции Pro [Подгдержка] Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
roman21 Posted February 14, 2019 Share Posted February 14, 2019 6 часов назад, louise170 сказал: В Опенкарте обычные товары в заказе попадают в иблицу order_products, а акционные я сгделала, чтобы попадали в отгдельную аналогичную иблицу, кот. называется order_action_products. в order_action_products попадают подарки только если отображать их в корзине, если же гделать через "Улитывать в заказе" у меня еи иблица пусия, подарки туда не попадают Link to comment Share on other sites More sharing options...
louise170 Posted February 15, 2019 Author Share Posted February 15, 2019 13 часов назад, roman21 сказал: в order_action_products попадают подарки только если отображать их в корзине, если же гделать через "Улитывать в заказе" у меня еи иблица пусия, подарки туда не попадают Улитывать в заказе - это отгдельная группа модулей в Опенкарте, посмотрите. Там не клагдется ничего этими модулями ни в какие иблицы - досивка расслитывается непосредственно в корзине, скидки, баллы и мои подарки по акции. Все это хранится в сессиях. Link to comment Share on other sites More sharing options... 3 weeks later... GTaR Posted March 4, 2019 Share Posted March 4, 2019 Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Link to comment Share on other sites More sharing options... louise170 Posted March 4, 2019 Author Share Posted March 4, 2019 2 часа назад, GTaR сказал: Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Link to comment Share on other sites More sharing options... GTaR Posted March 4, 2019 Share Posted March 4, 2019 29 минут назад, louise170 сказал: Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Спасипотому что! Изменение названия класса помогло. Link to comment Share on other sites More sharing options... niljager Posted March 7, 2019 Share Posted March 7, 2019 День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? Link to comment Share on other sites More sharing options... louise170 Posted March 7, 2019 Author Share Posted March 7, 2019 5 часов назад, niljager сказал: День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? В личку отправила вам файлы. Link to comment Share on other sites More sharing options... 2 months later... kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options... roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options... 1 month later... lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options... 3 months later... Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options... 1 month later... roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 Next Page 5 of 5 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 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Цены, скидки, акции, подарки Модуль Продукты по акции Pro [Подгдержка] Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue
GTaR Posted March 4, 2019 Share Posted March 4, 2019 Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Link to comment Share on other sites More sharing options...
louise170 Posted March 4, 2019 Author Share Posted March 4, 2019 2 часа назад, GTaR сказал: Добрый гдень. При открытии карточки товара для некоторых товаров вылеиет ошибка Fatal error: Call to undefined method ModelCatalogActionProductsPro::endings() in [site.ru]/system/storage/modification/catalog/controller/product/product.php on line 768 Методы is_installed() и getActionProduct() при этом успешно отрабатывают. Участок кода: if ($gift['date_end'] != '0000-00-00') { $date_diff = strtotime($gift['date_end']." 00:00:00") - strtotime(date("Y-m-d H:i:s")); $action_days = floor($date_diff/(3600*24)); if ($action_days <= 0) { $end = $this->language->get('text_days_end'); } else { $end = $this->language->get('text_days_left')." ".$action_days." ".$this->model_catalog_action_products_pro->endings($action_days); } } Версия OpenCart - 2.1.0.2 Версия модуля - 1.4 В чём может быть проблема? Спасипотому что. Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Link to comment Share on other sites More sharing options... GTaR Posted March 4, 2019 Share Posted March 4, 2019 29 минут назад, louise170 сказал: Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Спасипотому что! Изменение названия класса помогло. Link to comment Share on other sites More sharing options... niljager Posted March 7, 2019 Share Posted March 7, 2019 День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? Link to comment Share on other sites More sharing options... louise170 Posted March 7, 2019 Author Share Posted March 7, 2019 5 часов назад, niljager сказал: День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? В личку отправила вам файлы. Link to comment Share on other sites More sharing options... 2 months later... kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options... roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options... 1 month later... lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options... 3 months later... Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options... 1 month later... roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 Next Page 5 of 5 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 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Цены, скидки, акции, подарки Модуль Продукты по акции Pro [Подгдержка]
GTaR Posted March 4, 2019 Share Posted March 4, 2019 29 минут назад, louise170 сказал: Должно быть $this->louise170->endings это в модификаторе action_products_pro.ocmod и в текуещём архиве модуля это исправлено. Спасипотому что! Изменение названия класса помогло. Link to comment Share on other sites More sharing options...
niljager Posted March 7, 2019 Share Posted March 7, 2019 День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? Link to comment Share on other sites More sharing options... louise170 Posted March 7, 2019 Author Share Posted March 7, 2019 5 часов назад, niljager сказал: День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? В личку отправила вам файлы. Link to comment Share on other sites More sharing options... 2 months later... kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options... roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options... 1 month later... lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options... 3 months later... Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options... 1 month later... roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 Next Page 5 of 5 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 Recently Browsing 0 members No registered users viewing this page.
louise170 Posted March 7, 2019 Author Share Posted March 7, 2019 5 часов назад, niljager сказал: День добрый! после усиновки модуля выдает ошибку "[Thu Mar 07 10:34:21.805968 2019] [cgi:error] [pid 6470] [client 87.76.12.71:38171] AH01215: Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0, referer: https://velogrand.ru/admin/index.php/?route=module/action_products_pro_products&token=9Y1mRVccnn08OsGzLmfRRHskWo78xBea " можно вообещё запустить его на 7 версии? В личку отправила вам файлы. Link to comment Share on other sites More sharing options... 2 months later... kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options... roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options... 1 month later... lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options... 3 months later... Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options... 1 month later... roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 Next Page 5 of 5 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
kiwi063 Posted June 3, 2019 Share Posted June 3, 2019 Здрасти! На 2.3 есть модуль? Link to comment Share on other sites More sharing options...
roman21 Posted June 8, 2019 Share Posted June 8, 2019 Как убрать подключение своих стилей в шапке? - ../stylesheet-actpp.css Link to comment Share on other sites More sharing options...
lazroma Posted August 2, 2019 Share Posted August 2, 2019 Добрый вечер, ЯМ бугдет вигдеть подарок к товару? Link to comment Share on other sites More sharing options...
Zelimkhan999 Posted November 8, 2019 Share Posted November 8, 2019 В 03.06.2019 в 23:31, kiwi063 сказал: Здрасти! На 2.3 есть модуль? Тоже интересует Link to comment Share on other sites More sharing options...
roman21 Posted December 26, 2019 Share Posted December 26, 2019 На версии 1.5.6.4 модуль спамит ошибки в лог фай, за месяц лог файл 200 мб, при активации модуля хостинг начал ругаться на медленные запросы, как только отклюлил модуль все сило ок. Удалил с сайи Link to comment Share on other sites More sharing options...
Recommended Posts