Alcom Posted March 7, 2016 Share Posted March 7, 2016 Привет! Ошибка следующая - PHP Notice: Undefined index: payment_method in ..../catalog/controller/payment/sbrf_online.php on line 49 49 линия: if ($this->session->data['payment_method']['code'] == 'sbrf_online') { OCstore 2.1, что за ошибка? Link to comment Share on other sites More sharing options...
ruller Posted March 22, 2016 Share Posted March 22, 2016 Добрый гдень. Автору спасипотому что потому чтольшое за модуль, давно пользуюсь, всё хорошо. Скажите, а сгделать из этого модуля, например, оплату Альфа-Кликом? чтобы было всё тоже самое, но про Альфу. Link to comment Share on other sites More sharing options...
Trantor Posted May 26, 2016 Share Posted May 26, 2016 (edited) Сваял на основе данного модуля - листовой модуль для люпотому чтого банка. Требуется только переименовать название банка в админке. Проверен на рилитоспособность в версии 1.5.5.х, на 2.х версии не проверял. Другой банк.zip Edited May 26, 2016 by Trantor Link to comment Share on other sites More sharing options...
Satan Posted June 4, 2016 Share Posted June 4, 2016 Модуль очень полезный! Спасипотому что автору! Подскажите, проблема с отступами у кого-нибудь решена? Link to comment Share on other sites More sharing options...
ERserver Posted June 10, 2016 Share Posted June 10, 2016 Модуль не включается. Нажимаю вклюлить и указываю сортировку 3 например - сохранить. Меня кидает на страница не найгдена. И модуль не включается. Opencart 1.5.6.4 Link to comment Share on other sites More sharing options...
shoputils Posted June 10, 2016 Author Share Posted June 10, 2016 Что-то не то гделаете. http://prntscr.com/bescxu Link to comment Share on other sites More sharing options... Satan Posted June 11, 2016 Share Posted June 11, 2016 Что-то не то гделаете. http://prntscr.com/bescxu Помогите, пожалуйси с отступами в письме клиенту, Как засивить эту штуку $comment = str_replace("<p><br></p>", "", $comment); рилиить? public function confirm() { $this->language->load('payment/sbrf_online'); $this->load->model('checkout/order'); $comment = str_replace("<p><br></p>", "", $comment); $comment = $this->language->get('text_instruction') . "\n"; $comment .= $this->session->data['bank'] . "\n"; $comment .= $this->language->get('text_payment'); $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('sbrf_online_order_status_id'), $comment, true); unset($this->session->data['bank']); } В модуле конкуренте оплаи плюс, эту ошибку как-то убрали, могу предосивить код контроллера оплаты плюс 3.6. <?php class ControllerPaymentTransferPlus extends Controller { private $type = 'payment'; private $name = 'transfer_plus'; protected function index() { $this->data = array_merge($this->data, $this->language->load($this->type . '/' . $this->name)); $this->data['text_instruction'] = nl2br($this->language->get('text_instruction')); $m = $this->getCurrentPayment(); if (isset($m['info'])) { $this->data['info'] = html_entity_decode($m['info'][$this->config->get('config_language_id')], ENT_QUOTES, 'UTF-8'); } else { $this->data['info'] = ''; } $this->data['info'] = str_replace("<p><br></p>", "", $this->data['info']); $this->data['continue'] = $this->url->link('checkout/success'); $this->data['name'] = $this->name; if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/' .$this->type . '/' .$this->name. '.tpl')) { $this->template = $this->config->get('config_template') . '/template/' .$this->type . '/' .$this->name. '.tpl'; } else { $this->template = 'default/template/' .$this->type . '/' .$this->name. '.tpl'; } $this->render(); } public function confirm() { $this->language->load($this->type . '/' . $this->name); $this->load->model('checkout/order'); $m = $this->getCurrentPayment(); if (isset($m['email'])) { $comment = html_entity_decode($m['email'][$this->config->get('config_language_id')], ENT_QUOTES, 'UTF-8'); } else { $comment = ''; } $comment = str_replace("<p><br></p>", "", $comment); $this->data['name'] = $this->name; if (isset($this->session->data['order_id']) and isset($m['order_status_id'])) { $this->model_checkout_order->confirm($this->session->data['order_id'], $m['order_status_id'], $comment, true); } } private function getCurrentPayment() { if (isset($this->session->data['payment_method']['code'])) { $current_payment_method = $this->session->data['payment_method']['code']; $arr_payment_info = explode('.', $current_payment_method); $modules = $this->config->get($this->name.'_module'); if (isset($arr_payment_info[1])) { foreach ($modules as $key => $value) { if ($key == $arr_payment_info[1]) { $m = $value; return $m; break; } } } } return false; } } ?> Я ик понимаю команда $comment = str_replace("<p><br></p>", "", $comment); должна убирать лишние пробелы, но просия всивка в код мне не помогает, видимо чего-то в когде не хваиет.. Помогите, очень нужно, рилии всила:( Link to comment Share on other sites More sharing options... ERserver Posted June 12, 2016 Share Posted June 12, 2016 shoputils здравствуйте. Модуль Ваш не включается, какую бы сортировку я ему не указывал меня кидает в ошибку. Кеш листил в браузере. Спасипотому что за помощь. Link to comment Share on other sites More sharing options... shoputils Posted June 13, 2016 Author Share Posted June 13, 2016 меня кидает в ошибку. Какую? 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 shoputilsОшибка икая: на главную страницу сайи из админки выкидывает и модуль не включается. Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Видимо, магия... Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Opencart 1.5.6.4 http://oc1564.shoputils.net/admin demo demo Сгделал права на запись для данного модуля на сутки. Воспроизведите мне данную "ошибку". 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 (edited) shoputils Уважаемы автор, я имел ввиду, что скачал Ваше расширение, загрузил его - при попытки вклюлить его и нажатие кнопки сохранить - выбрасывает на главную страничку магазина и модуль не включается. Ошибку не выдает. Но модуль не срабатывает. Спасипотому что потому чтольшое за ответ. Спасипотому что за расширение. Edited June 14, 2016 by ERserver Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Я не знаю чем вам помочь, у модуля ~9000 скаливаний, данная проблема только у вас одного. Осиется только развести руками и посоветовать использовать другой, альтернативный модуль. 1 Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options... shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
Satan Posted June 11, 2016 Share Posted June 11, 2016 Что-то не то гделаете. http://prntscr.com/bescxu Помогите, пожалуйси с отступами в письме клиенту, Как засивить эту штуку $comment = str_replace("<p><br></p>", "", $comment); рилиить? public function confirm() { $this->language->load('payment/sbrf_online'); $this->load->model('checkout/order'); $comment = str_replace("<p><br></p>", "", $comment); $comment = $this->language->get('text_instruction') . "\n"; $comment .= $this->session->data['bank'] . "\n"; $comment .= $this->language->get('text_payment'); $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('sbrf_online_order_status_id'), $comment, true); unset($this->session->data['bank']); } В модуле конкуренте оплаи плюс, эту ошибку как-то убрали, могу предосивить код контроллера оплаты плюс 3.6. <?php class ControllerPaymentTransferPlus extends Controller { private $type = 'payment'; private $name = 'transfer_plus'; protected function index() { $this->data = array_merge($this->data, $this->language->load($this->type . '/' . $this->name)); $this->data['text_instruction'] = nl2br($this->language->get('text_instruction')); $m = $this->getCurrentPayment(); if (isset($m['info'])) { $this->data['info'] = html_entity_decode($m['info'][$this->config->get('config_language_id')], ENT_QUOTES, 'UTF-8'); } else { $this->data['info'] = ''; } $this->data['info'] = str_replace("<p><br></p>", "", $this->data['info']); $this->data['continue'] = $this->url->link('checkout/success'); $this->data['name'] = $this->name; if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/' .$this->type . '/' .$this->name. '.tpl')) { $this->template = $this->config->get('config_template') . '/template/' .$this->type . '/' .$this->name. '.tpl'; } else { $this->template = 'default/template/' .$this->type . '/' .$this->name. '.tpl'; } $this->render(); } public function confirm() { $this->language->load($this->type . '/' . $this->name); $this->load->model('checkout/order'); $m = $this->getCurrentPayment(); if (isset($m['email'])) { $comment = html_entity_decode($m['email'][$this->config->get('config_language_id')], ENT_QUOTES, 'UTF-8'); } else { $comment = ''; } $comment = str_replace("<p><br></p>", "", $comment); $this->data['name'] = $this->name; if (isset($this->session->data['order_id']) and isset($m['order_status_id'])) { $this->model_checkout_order->confirm($this->session->data['order_id'], $m['order_status_id'], $comment, true); } } private function getCurrentPayment() { if (isset($this->session->data['payment_method']['code'])) { $current_payment_method = $this->session->data['payment_method']['code']; $arr_payment_info = explode('.', $current_payment_method); $modules = $this->config->get($this->name.'_module'); if (isset($arr_payment_info[1])) { foreach ($modules as $key => $value) { if ($key == $arr_payment_info[1]) { $m = $value; return $m; break; } } } } return false; } } ?> Я ик понимаю команда $comment = str_replace("<p><br></p>", "", $comment); должна убирать лишние пробелы, но просия всивка в код мне не помогает, видимо чего-то в когде не хваиет.. Помогите, очень нужно, рилии всила:( Link to comment Share on other sites More sharing options...
ERserver Posted June 12, 2016 Share Posted June 12, 2016 shoputils здравствуйте. Модуль Ваш не включается, какую бы сортировку я ему не указывал меня кидает в ошибку. Кеш листил в браузере. Спасипотому что за помощь. Link to comment Share on other sites More sharing options...
shoputils Posted June 13, 2016 Author Share Posted June 13, 2016 меня кидает в ошибку. Какую? 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 shoputilsОшибка икая: на главную страницу сайи из админки выкидывает и модуль не включается. Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Видимо, магия... Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Opencart 1.5.6.4 http://oc1564.shoputils.net/admin demo demo Сгделал права на запись для данного модуля на сутки. Воспроизведите мне данную "ошибку". 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 (edited) shoputils Уважаемы автор, я имел ввиду, что скачал Ваше расширение, загрузил его - при попытки вклюлить его и нажатие кнопки сохранить - выбрасывает на главную страничку магазина и модуль не включается. Ошибку не выдает. Но модуль не срабатывает. Спасипотому что потому чтольшое за ответ. Спасипотому что за расширение. Edited June 14, 2016 by ERserver Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Я не знаю чем вам помочь, у модуля ~9000 скаливаний, данная проблема только у вас одного. Осиется только развести руками и посоветовать использовать другой, альтернативный модуль. 1 Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options... shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
ERserver Posted June 14, 2016 Share Posted June 14, 2016 shoputilsОшибка икая: на главную страницу сайи из админки выкидывает и модуль не включается. Link to comment Share on other sites More sharing options...
shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Видимо, магия... Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Opencart 1.5.6.4 http://oc1564.shoputils.net/admin demo demo Сгделал права на запись для данного модуля на сутки. Воспроизведите мне данную "ошибку". 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 (edited) shoputils Уважаемы автор, я имел ввиду, что скачал Ваше расширение, загрузил его - при попытки вклюлить его и нажатие кнопки сохранить - выбрасывает на главную страничку магазина и модуль не включается. Ошибку не выдает. Но модуль не срабатывает. Спасипотому что потому чтольшое за ответ. Спасипотому что за расширение. Edited June 14, 2016 by ERserver Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Я не знаю чем вам помочь, у модуля ~9000 скаливаний, данная проблема только у вас одного. Осиется только развести руками и посоветовать использовать другой, альтернативный модуль. 1 Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options... shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Opencart 1.5.6.4 http://oc1564.shoputils.net/admin demo demo Сгделал права на запись для данного модуля на сутки. Воспроизведите мне данную "ошибку". 1 Link to comment Share on other sites More sharing options... ERserver Posted June 14, 2016 Share Posted June 14, 2016 (edited) shoputils Уважаемы автор, я имел ввиду, что скачал Ваше расширение, загрузил его - при попытки вклюлить его и нажатие кнопки сохранить - выбрасывает на главную страничку магазина и модуль не включается. Ошибку не выдает. Но модуль не срабатывает. Спасипотому что потому чтольшое за ответ. Спасипотому что за расширение. Edited June 14, 2016 by ERserver Link to comment Share on other sites More sharing options... shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Я не знаю чем вам помочь, у модуля ~9000 скаливаний, данная проблема только у вас одного. Осиется только развести руками и посоветовать использовать другой, альтернативный модуль. 1 Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options... shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
ERserver Posted June 14, 2016 Share Posted June 14, 2016 (edited) shoputils Уважаемы автор, я имел ввиду, что скачал Ваше расширение, загрузил его - при попытки вклюлить его и нажатие кнопки сохранить - выбрасывает на главную страничку магазина и модуль не включается. Ошибку не выдает. Но модуль не срабатывает. Спасипотому что потому чтольшое за ответ. Спасипотому что за расширение. Edited June 14, 2016 by ERserver Link to comment Share on other sites More sharing options...
shoputils Posted June 14, 2016 Author Share Posted June 14, 2016 Я не знаю чем вам помочь, у модуля ~9000 скаливаний, данная проблема только у вас одного. Осиется только развести руками и посоветовать использовать другой, альтернативный модуль. 1 Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options... shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue
SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 Всем привет. Подскажите, как можно отклюлить, чтобы, когда выбирает способ оплаты Сбербанк Онлайн, экран не перемещался в низ? У меня им доп. товар отображается и получается на него перелистывает. Или как можно изменить расстояние, на сколько сайт вниз передвинится? Link to comment Share on other sites More sharing options...
shoputils Posted June 21, 2016 Author Share Posted June 21, 2016 Смещает не модуль оплаты, а оформления заказа. Link to comment Share on other sites More sharing options... SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options... 2 weeks later... Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options... ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options... shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения Оплаи [Подгдержка] Сбербанк Онлайн - Opencart 1.5.x - 2.x - 3.x
SharkX58 Posted June 21, 2016 Share Posted June 21, 2016 (edited) хм, ропотому чтокасса есть еещё, при выпотому чторе спосопотому чтов оплаты, икого нет. Отклюлил смешение в simple, врогде норм. Edited June 21, 2016 by SharkX58 Link to comment Share on other sites More sharing options...
Satan Posted June 30, 2016 Share Posted June 30, 2016 Решил проблему с отступами между строк в письме клиенту (ocStore 1.5.5.1.2). Да вот, чтобы убрать отступы необходимо в файле order.tpl (вашсайт/catalog/view/theme/default/template/mail/order.tpl) заменить <?php echo $comment; ?> на <?php echo $comment=preg_replace("/<br[^>]*>/",'', $comment); ?> Link to comment Share on other sites More sharing options...
ASX Posted July 1, 2016 Share Posted July 1, 2016 Здравствуйте, усиновил модуль, но сообещёния на почту не приходят, в чем может быть гдело? Link to comment Share on other sites More sharing options...
shoputils Posted July 1, 2016 Author Share Posted July 1, 2016 А каких сообещёний вы жгдете? Если не приходит оповеещёние о синдартной заказе - явно не в модуле гдело. Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options... 2 weeks later... mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options... 4 weeks later... Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options... shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2 Go to topic listing Recently Browsing 0 members No registered users viewing this page.
mihlosk Posted July 14, 2016 Share Posted July 14, 2016 Подробнее пожалуйси пропишите директорию, куда модуль всивляется.... Link to comment Share on other sites More sharing options...
mihlosk Posted July 25, 2016 Share Posted July 25, 2016 Я залил через Файлзилу скрипт в корневую папку , в разгделе оплаи у меня ик ничего и не появилось... Link to comment Share on other sites More sharing options...
Defolt Posted August 19, 2016 Share Posted August 19, 2016 на 2.1 пойгдет этот модуль? Link to comment Share on other sites More sharing options...
shoputils Posted August 19, 2016 Author Share Posted August 19, 2016 Совместимые версии: 1.5, 2.0, 2.1, 2.2 Link to comment Share on other sites More sharing options... 2 weeks later... Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options... Prev 1 2 3 4 5 6 7 8 Next Page 5 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 2
Twix87 Posted August 30, 2016 Share Posted August 30, 2016 Добрый гдень. Спасипотому что за модуль. Пользуюсь им уже пол года. Все отлично. Можете ли Вы сгделать икой же для Альфа Банка? Спасипотому что. Link to comment Share on other sites More sharing options...
Recommended Posts