Вывод подкатегорий только в подкатегориях
-
- Сообщения: 3
- Зарегистрирован: 22.12.2024
Вывод подкатегорий только в подкатегориях
Здравствуйте. Есть штатный модуль категории, который выводит все категории, в том числе и подкатегории. Я сделал полный дубликат и назвал его подкатегории. Подправил код в twig, чтобы он отображал только подкатегории. Но вопрос возникает в том, как сделать так, чтобы этот модуль выводился только в самих подкатегориях, а в родительских нет. Спасибо
- BuslikDrev
- Разработчик дополнений
- Сообщения: 172
- Зарегистрирован: 22.04.2022
- Откуда: Кіеўская Русь
- Поблагодарил: 4 раз
- Спасибо: 10 раз
- Контактная информация:
Re: Вывод подкатегорий только в подкатегориях
Вариант 1
public function index($setting) {
if (!empty($this->request->get['path']) && is_string($this->request->get['path'])) {
$path = explode('_', $this->request->get['path']);
if (!isset($path[1])) {
$setting['status'] = false;
}
}
Вариант 2
public function index($setting) {
if (!empty($this->request->get['path']) && is_string($this->request->get['path']) && strpos($this->request->get['path'], '_') === false) {
$setting['status'] = false;
}
public function index($setting) {
if (!empty($this->request->get['path']) && is_string($this->request->get['path'])) {
$path = explode('_', $this->request->get['path']);
if (!isset($path[1])) {
$setting['status'] = false;
}
}
Вариант 2
public function index($setting) {
if (!empty($this->request->get['path']) && is_string($this->request->get['path']) && strpos($this->request->get['path'], '_') === false) {
$setting['status'] = false;
}
-
- Сообщения: 3
- Зарегистрирован: 22.12.2024
Re: Вывод подкатегорий только в подкатегориях
К сожалению ни один из вариантов не работает. Ошибки в ряд
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Стоит ocStore 3.0.3.7
Изначально код в category.php выглядит так:
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Notice: Undefined variable: cache_status in/home/c/cd98674/vf-o/storage/modification/catalog/controller/extension/module/category.phpon line50
Стоит ocStore 3.0.3.7
Изначально код в category.php выглядит так:
Спойлер
<?php
class ControllerExtensionModuleCategory extends Controller {
public function index() {
$this->load->language('extension/module/category');
if (isset($this->request->get['path'])) {
$parts = explode('_', (string)$this->request->get['path']);
} else {
$parts = array();
}
if (isset($parts[0])) {
$data['category_id'] = $parts[0];
} else {
$data['category_id'] = 0;
}
if (isset($parts[1])) {
$data['child_id'] = $parts[1];
} else {
$data['child_id'] = 0;
}
$this->load->model('catalog/category');
$this->load->model('catalog/product');
$data['categories'] = array();
$categories = $this->model_catalog_category->getCategories(0);
foreach ($categories as $category) {
$children_data = array();
if ($category['category_id'] == $data['category_id']) {
$children = $this->model_catalog_category->getCategories($category['category_id']);
foreach($children as $child) {
$filter_data = array('filter_category_id' => $child['category_id'], 'filter_sub_category' => true);
$children_data[] = array(
'category_id' => $child['category_id'],
'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
);
}
}
$filter_data = array(
'filter_category_id' => $category['category_id'],
'filter_sub_category' => true
);
$data['categories'][] = array(
'category_id' => $category['category_id'],
'name' => $category['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
'children' => $children_data,
'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
);
}
return $this->load->view('extension/module/category', $data);
}
}
class ControllerExtensionModuleCategory extends Controller {
public function index() {
$this->load->language('extension/module/category');
if (isset($this->request->get['path'])) {
$parts = explode('_', (string)$this->request->get['path']);
} else {
$parts = array();
}
if (isset($parts[0])) {
$data['category_id'] = $parts[0];
} else {
$data['category_id'] = 0;
}
if (isset($parts[1])) {
$data['child_id'] = $parts[1];
} else {
$data['child_id'] = 0;
}
$this->load->model('catalog/category');
$this->load->model('catalog/product');
$data['categories'] = array();
$categories = $this->model_catalog_category->getCategories(0);
foreach ($categories as $category) {
$children_data = array();
if ($category['category_id'] == $data['category_id']) {
$children = $this->model_catalog_category->getCategories($category['category_id']);
foreach($children as $child) {
$filter_data = array('filter_category_id' => $child['category_id'], 'filter_sub_category' => true);
$children_data[] = array(
'category_id' => $child['category_id'],
'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
);
}
}
$filter_data = array(
'filter_category_id' => $category['category_id'],
'filter_sub_category' => true
);
$data['categories'][] = array(
'category_id' => $category['category_id'],
'name' => $category['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
'children' => $children_data,
'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
);
}
return $this->load->view('extension/module/category', $data);
}
}
- BuslikDrev
- Разработчик дополнений
- Сообщения: 172
- Зарегистрирован: 22.04.2022
- Откуда: Кіеўская Русь
- Поблагодарил: 4 раз
- Спасибо: 10 раз
- Контактная информация:
Re: Вывод подкатегорий только в подкатегориях
Ошибка говорит, что идёт конфликт с кодом шаблона или каким-нибудь модулем кэша.
В вашем случае вместо $setting['status'] = false; указать return '';
Также вместо get['path'] указать get[ 'path' ]
И не копировать public function index() { т.к. я показываю место установки.
public function index() {
if (!empty($this->request->get[ 'path' ]) && is_string($this->request->get[ 'path' ])) {
$path = explode('_', $this->request->get[ 'path' ]);
if (!isset($path[1])) {
return '';
}
}
Вариант 2
public function index() {
if (!empty($this->request->get[ 'path' ]) && is_string($this->request->get[ 'path' ]) && strpos($this->request->get[ 'path' ], '_') === false) {
return '';
}
-
- Сообщения: 3
- Зарегистрирован: 22.12.2024