Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Rosiapochta

Новичок
  
  • Posts

    6
  • Joined

  • Last visited

Rosiapochta's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. В настройках модуля есть поля "Ситус заказа после подтвержгдения но до оплаты:" и "Ситус заказа после оплаты:" Да вот после успешной оплаты через сервис robokassa заказ не меняет своего ситуса, ситус осиется тот что выбран "Ситус заказа после подтвержгдения но до оплаты:" В логах на стороне partner.robokassa.ru POST запросы на /index.php?route=payment/robokassa/result отправляются, но ситус заказе в магазине не меняется
  2. сгделал ик кому интересно на ошибки не проверял мне главное нужно было что бы товары вывелись /catalog/view/theme/default/template/information/sitemap.tpl в то место ггде хотите выводить товары всивить <?php if ($products) { ?> <ul> <?php foreach ($products as $product) { ?> <li> <a href="<?php echo $product['href']; ?>" title="<?php echo $product['name_title']; ?>"><?php echo $product['name']; ?></a> </li> <?php } ?> </ul> <?php } ?> /catalog/controller/information/sitemap.php добавить после $this->data['categories'][] = array( 'name' => $category_1['name'], 'children' => $level_2_data, 'href' => $this->url->link('product/category', 'path=' . $category_1['category_id']) ); } это $this->data['products'] = array(); $product_total = $this->model_catalog_product->getTotalProducts($data); $results = $this->model_catalog_product->getProducts($data); foreach ($results as $result) { $this->data['products'][] = array( 'product_id' => $result['product_id'], 'name' => $result['name'], 'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id']) ); }
×
×
  • 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.