Доброго дня.
Есть модуль, который выводит ссылки на категории товаров в Opencart 3.0.3.8, но выводятся ссылки в таком виде:
{% if links.category is defined and link.category != '' %}
<li><a href="/index.php?route=product/category&path={{ link.category }}">{{ link[item.language_id].name }}</a></li>
Задача вывести ссылки с ЧПУ без /index.php?route
Контроллер:
$links['top']['top'][] = array(
'name_on_links' => $this->model_catalog_links->getName($item['item_id']),
'item_id' => $item['item_id'],
'category_id' => $item['category_id'],
'view' => $item['view'],
'title' => $item['title'],
'items_count' => $item['items_count'],
'category_link' => $item['category_id'] != '' ? $this->url->link('product/category', 'path=' . $item['category_id']) : ''
);