bonjour,
il y a soit :
Le petit carré vert face à la catégorie dans l'admin, tu clique dessus et ça va cacher la catégorie
ou alors, un petit bout de code à changer dans:
"boutique" => includes => templates => mon_template => sideboxes => tpl_categories.php
rechercher:
}
if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
// skip if this is for the document box (==3)
} else {
remplacer par:
}
if ($box_categories_array[$i]['count'] < 1 or zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
// skip if this is for the document box (==3)
} else {
cela permet de ne pas "fermer" les catégories, elles ne s'afficheront pas si elle sont vides.