我categories.php模塊:如何Opencart的顯示類別圖像控制器
$this->data['categories'][] = array(
'category_id' => $category['category_id'],
'name' => $category['name'],
'image' => $category['image'],
'children' => $children_data,
'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
);
我在/產品/(視圖)categories.tpl
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><img src="<?php echo $category['image']; ?>" alt="<?php echo $category['name']; ?>"></a></li>
<?php } ?>
但是它只是給我一個錯誤說變量是未知的。
我做錯了什麼?
我需要在哪裏定義DIR_IMAGE $ result ['image'];? – Matthew
您不需要定義任何內容,只需替換您在您自己提供的代碼中指定的代碼即可。這是如果你想獲得圖像的原始大小,如果你想調整所有圖像的大小,你應該遵循shadyxx指令。 –
謝謝男人:)它很好,非常感謝。 – Matthew