I want to hide the product quantity from the left column category menu, eg
> T-Shirt(36)
> -Polo(10)
, I want to remove the quantities within the bracket. For this I have edited the catalog/controller/product/category.php
file with the following :
$this->data['categories'][] = array(
//'name' => $result['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
'name' => $result['name'],
'href' => $this->url->link('product/category', 'path=' . $this->request->get['path'] . '_' . $result['category_id'] . $url)
);
But the page still showing the quantities ! Where should I edit so that the quantities are hidden ?