opencart 2.3子类别的相同图像

时间:2018-01-12 11:16:28

标签: opencart opencart2.3

我正在使用 opencart 2.3 ,在类别页面中,所有子类别都有相同的图片。标题不同,在后端和数据库中的图像是不同的。

/image/cache删除了所有内容,但没有效果。

尝试将$image添加到$data['categories']数组中,controller/product/category.php但是相同。

这是我<theme>/product/category.tpl

的代码
<?php if ($categories) { ?>
    <?php foreach ($categories as $category) { ?>
        <a href="<?php echo $category['href']; ?>"><img src="<?php echo $thumb; ?>" alt="<?php echo $category['name']; ?>" /><p><?php echo $category['name']; ?></p></a>
    <?php } ?>
<?php } ?>

找不到别的办法解决这个问题。如果你能提供帮助,我们将非常感激。

1 个答案:

答案 0 :(得分:1)

通过添加以下内容修复:

'thumb' => $this->model_tool_image->resize($result['image'], $this->config->get($this->config->get('config_theme') . '_image_category_width'), $this->config->get($this->config->get('config_theme') . '_image_category_height'))

$data['categories']数组。

:)