2013-11-15 53 views
0
多個頁面Opencart的拆分類

我試圖實現以下目標:

類別爲GROUP1,GROUP2類別,類別頂部菜單GROUP3

當選擇類別GROUP1該組中所有的categorys將上市左欄。

所以左邊欄是這樣的:

類別GROUP1 category11

類別GROUP1 category12

類別GROUP1 category13

和選擇產品的時候,僅此CATEGORY GROUP1應顯示在左欄中,

當在頂部菜單選擇類別GROUP2我想左側欄只顯示:

類別GROUP2 Category21

類別GROUP2 Category22

類別GROUP2 Category23

當從這個列表中選擇一個產品時,我只希望CATEGORY GROUP2在左欄中可見

與類別組3

就無法弄清楚如何做到這一點,因爲如果添加的類別模塊佈局「產品」同樣的事情,它會每次都在產品的時候是可見的。

我已經嘗試過分割分類併爲每個分割添加不同的佈局, 示例路由page1/page1,page2/page2,這適用於在不同頁面上顯示分類,但只要您選擇產品,顯示與產品頁面對齊的所有模塊。

這怎麼辦?

OpenCart 1.5.6

回答

0

我明白你想達到什麼目的。我知道創建一個新問題更好。這可以在catalog/controller/module/category.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; 
     } 

     $categories = $this->model_catalog_category->getCategories($this->data['category_id']); 

     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(); 

     foreach ($categories as $category) { 
      $total = $this->model_catalog_product->getTotalProducts(array('filter_category_id' => $category['category_id'])); 

      $children_data = array(); 

      if (!$this->data['category_id']) { 
       $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']) 
        );  
       } 
      } 

      $this->data['categories'][] = array(
       'category_id' => $category['category_id'], 
       'name'  => $category['name'] . ($this->config->get('config_product_count') ? ' (' . $total . ')' : ''), 
       'children' => $children_data, 
       '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(); 
    } 
} 

這應該按預期工作以及之前如果沒有提供類別ID ...

+0

謝謝,但這只是拿走了左列的分類,並在topmenu中留下了腳趾?對不起,如果我不夠清楚。如果我選擇分類組1,則類別11,12,13顯示在左側欄中,並且在選擇產品時,分類11,12,13仍然存在(圖像1 + 2),則當選擇分類組2時,分類21 ,22,23顯示在左欄中,而選擇產品時只有那些類別存在。 (image3 + 4)這樣讓產品頁面能夠繼承前面的地方,希望它能讓你感覺到它? –

+0

好吧,我用CSS解決了這個問題,通過向基於路線的body添加不同的類,並簡單地顯示/隱藏我不想要的東西。不是最終的溶劑,但工作。我應該在這裏發佈答案還是太骯髒的解決方法? –

+0

恕我直言,這是一個解決方法,但如果它的工作,OFC張貼在這裏,並接受它,以便有人可能在未來使用它;-) – shadyyx