• 07-03-2014, 15:31:54
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Merhaba

    Ürünleri
    'Red Category
    Blue Category
    Green Category '





    seklinde renklere göre kategorilendirme yaptım, kategorilerin yanlarına renkleri temsilen foto, icon, simge ya da kategori resmi, ozetle ornekteki gibi bir şey eklemek istiyorum. Bunu nasıl yapabilirim ?
  • 31-03-2014, 14:24:07
    #2
    Belki birilerinin isine yarar:
    ''Dosymızı Açalım : catalog/conroller/module/

    category.php

    oldugu gibi komple değiştir.''
    <?php 
    class ControllerModuleCategory extends Controller {
    protected function index($setting) {
    $this->language->load('module/category');
    
    $this->data['heading_title'] = $this->language->get('heading_title');
    
    if (isset($this->request->get['path'])) {
    $parts = explode('_', (string)$this->request->get['path']);
    } else {
    $parts = array();
    }
    
    if (isset($parts[0])) {
    $this->data['category_id'] = $parts[0];
    } else {
    $this->data['category_id'] = 0;
    }
    
    if (isset($parts[1])) {
    $this->data['child_id'] = $parts[1];
    } else {
    $this->data['child_id'] = 0;
    }
    
    $this->load->model('catalog/category');
    
    $this->load->model('catalog/product');
    
    $this->data['categories'] = array();
    
    $categories = $this->model_catalog_category->getCategories(0);
    
    foreach ($categories as $category) {
    $total = $this->model_catalog_product->getTotalProducts(array('filter_category_id' => $category['category_id']));
    
    $children_data = array();
    
    $children = $this->model_catalog_category->getCategories($category['category_id']);
    
    foreach ($children as $child) {
    $data = array(
    'filter_category_id' => $child['category_id'],
    'filter_sub_category' => true
    );
    
    $product_total = $this->model_catalog_product->getTotalProducts($data);
    
    $total += $product_total;
    
    $children_data[] = array(
    'category_id' => $child['category_id'],
    'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
    'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id']) 
    ); 
    }
    // image cat code
    $this->load->model('tool/image');
    $image = empty($category['image']) ? 'no_image.jpg' : $category['image'];
    $thumb = $this->model_tool_image->resize($image, 50, 127);
    
    
    
    $this->data['categories'][] = array(
    'category_id' => $category['category_id'],
    'name' => $category['name'] . ($this->config->get('config_product_count') ? ' (' . $total . ')' : ''),
    'children' => $children_data,
    'thumb' => $thumb,
    'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
    ); 
    }
    
    if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/category.tpl')) {
    $this->template = $this->config->get('config_template') . '/template/module/category.tpl';
    } else {
    $this->template = 'default/template/module/category.tpl';
    }
    
    $this->render();
    }
    }
    ?>

    Dosyamızı Açalım :

    Catalo/view/theme/seninteman/template/module/

    category.tpl


    Komple değiştir


    <div class="box">
    <div class="box-heading"><?php echo $heading_title; ?></div>
    <div class="box-content">
    <ul class="box-category">
    <?php foreach ($categories as $category) { ?>
    <li>
    <?php if ($category['category_id'] == $category_id) { ?>
    <a href="<?php echo $category['href']; ?>" class="active"><img src="<?php echo $category['thumb']; ?>" /><?php echo $category['name']; ?></a>
    <?php } else { ?>
    <a href="<?php echo $category['href']; ?>"><img src="<?php echo $category['thumb']; ?>" /><?php echo $category['name']; ?></a>
    <?php } ?>
    <?php if ($category['children']) { ?>
    <ul>
    <?php foreach ($category['children'] as $child) { ?>
    <li>
    <?php if ($child['category_id'] == $child_id) { ?>
    <a href="<?php echo $child['href']; ?>" class="active"> - <?php echo $child['name']; ?></a>
    <?php } else { ?>
    <a href="<?php echo $child['href']; ?>"> - <?php echo $child['name']; ?></a>
    <?php } ?>
    </li>
    <?php } ?>
    </ul>
    <?php } ?>
    </li>
    <?php } ?>
    </ul>
    </div>
    </div>