all! I downloaded my template and pasted code in file - /catalog/controller/common/header.php
// Level 1
$this->load->model('tool/image');
$image = empty($category['image']) ? 'no_image.jpg' : $category['image'];
$thumb = $this->model_tool_image->resize($image, 100, 100);
$this->data['categories'][] = array(
'name' => $category['name'],
'children' => $children_data,
'column' => $category['column'] ? $category['column'] : 1,
'thumb' => $thumb,
'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
);
then pasted in /catalog/view/theme/freetemplate/template/common/header.tpl - this code
<img src="<?php echo $category['thumb']; ?>" alt="<?php echo $category['name']; ?>" title="<?php echo $category['name']; ?>" class="img-responsive" />
images - not show -
Notice: Undefined variable: thumb ...
If I use default template - images in category menu - display. Where I made a mistake?