Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Как вывести модуль только в последнем уровне категорий?


SooR
 Share

Для этого необходимо проделать несложную манипуляцию в коде контроллера (библиотеки для OpenCart 3) модуля, а именно:

 

Открываем файл 

 

OpenCart 2.*

catalog/controller/[extension/]module/ocfilter.php

 

OpenCart 3.*

system/library/ocfilter.php

 

Найти

$this->category_id = (int)end($parts);

После вставить

// Show at last category level
$this->load->model('catalog/category');

$results = $this->model_catalog_category->getCategories($this->category_id);

if ($results) {
  $this->category_id = 0;

  return;
}

Сохранить файл, обновить модификаторы, проверить.


Comments

There are no comments to display.

×
×
  • 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.