Roman Fov, вы написали вот это
Цитата:
Открываем файлы /modules/shop/item/model.php и /modules/shop/group/model.php, добавляем после:
/**
* Change item status
*/
public function changeStatus()
{
$this->active = 1 - $this->active;
return $this->save();
}
такой код:
/**
* Change indexation
*/
public function changeIndexation()
{
$this->indexing = 1 - $this->indexing;
return $this->save();
}
В файле /modules/shop/group/model.php не нашел таких строчек
/**
* Change item status (здесь менял item на group)
*/
public function changeStatus()
Может в этом проблема я добавил эти строчки просто в конец документа.