Проверила ещё раз, точно добавила.
Вот источник:
Edit catalog/controller/product/manufacturer.php and find the line: CODE: SELECT ALL $this->data['categories'][$key]['manufacturer'][] = array( above it, add the code: CODE: SELECT ALL if ($result['image']) { $brandimage = $this->model_tool_image->resize($result['image'], 100, 100); } else { $brandimage = $this->model_tool_image->resize('no_image.jpg', 100, 100); } now, below the same line mentioned above, add: CODE: SELECT ALL 'thumb' => $brandimage, Now edit catalog/view/theme/yourtheme/template/product/manufacturer_list.tpl and find the line: CODE: SELECT ALL <li><a href="<?php echo $category['manufacturer'][$i]['href']; ?>"><?php echo $category['manufacturer'][$i]['name']; ?></a></li> and replace it with: CODE: SELECT ALL <li><a href="<?php echo $category['manufacturer'][$i]['href']; ?>"><img src="<?php echo $category['manufacturer'][$i]['thumb']; ?>" alt="<?php echo $category['manufacturer'][$i]['name']; ?>" /></a> <br /> <a href="<?php echo $category['manufacturer'][$i]['href']; ?>"><?php echo $category['manufacturer'][$i]['name']; ?></a></li>