Página 2 de 2

Re: Apenas filhos da categoria por DIV

Enviado: 29 Fev 2012, 09:56
por Renato Frota
Esse 0 é o número de produtos dentro do departamento.

Você pode removê-lo em catalog/controller/module/category.tpl, linhas 44-50
Código: Selecionar todos
				$product_total = $this->model_catalog_product->getTotalProducts($data);
							
				$children_data[] = array(
					'category_id' => $child['category_id'],
					'name'        => $child['name'] . ' (' . $product_total . ')',
					'href'        => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])	
				);					
troque por
Código: Selecionar todos
				//$product_total = $this->model_catalog_product->getTotalProducts($data);
							
				$children_data[] = array(
					'category_id' => $child['category_id'],
					'name'        => $child['name'],
					'href'        => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])	
				);