catalog\controller\common\header.php
açıyoruz
$product_total = $this->model_catalog_product->getTotalProducts($data);
$children_data[] = array(
'name' => $child['name'] . ' (' . $product_total . ')',
bulup
$product_total = $this->model_catalog_product->getTotalProducts($data);
$children_data[] = array(
'resim' => $child['image'],
'name' => $child['name'] . ' (' . $product_total . ')',
ustteki resim degerini diziye ekliyoruz.
catalog\view\theme\TEMA ADI\template\common\header.tpl'yi açın
<li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
olan kısmı değiştiriyoruz ..
birazda css ile oynuyoruz ve kategoriler menude resimli şekilde çıkıyor.
<?php
$resim = "no_image-100x100.jpg";
$deger = explode('.jpg',$category['children'][$i]['resim']);
if($deger[0]){
$resima = $deger[0];
$resimek = "-100x100";
$uzanti = ".jpg";
$resim = $resima .$resimek .$uzanti;
}
else {
$deger = explode('.png',$category['children'][$i]['resim']);
if($deger[0]){
$resima = $deger[0];
$resimek = "-100x100";
$uzanti = ".png";
$resim = $resima .$resimek .$uzanti;
}
else {
$deger = explode('.gif',$category['children'][$i]['resim']);
if($deger[0]){
$resima = $deger[0];
$resimek = "-100x100";
$uzanti = ".gif";
$resim = $resima .$resimek .$uzanti;
}
}}
?>
<li> <a href="<?php echo $category['children'][$i]['href']; ?>"><img src="image/cache/<?php echo $resim; ?>" height="90px" width="90px" align="top" /><br /><?php echo $category['children'][$i]['name']; ?></a></li>