Jump to content

Revilon

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Location
    Tashkent
  • Activity
    Web development agency

Revilon's Achievements

Newbie

Newbie (1/14)

13

Reputation

  1. В файле classes/Pack.php замени строки 145-146 foreach ($result as &$row) $row = Product::getTaxesInformations($row); на foreach ($result as &$line) $line = Product::getTaxesInformations($line);
  2. Для того чтобы кнопка Удалить Заказ появилась в админке PrestaShop версии 1.5 и выше: 1. В файле (/controllers/admin/AdminOrdersController.php) найдите 36 строку. 2. После нее добавьте $this->addRowAction('delete'); Итоговый код должен быть такой: $this->table = 'order'; $this->className = 'Order'; $this->lang = false; $this->addRowAction('view'); $this->addRowAction('delete'); $this->explicitSelect = true; $this->deleted = false; $this->context = Context::getContext();
×
×
  • Create New...