Sofitec Posted February 5, 2019 Share Posted February 5, 2019 hola, quisiera eliminar del menu principal (visualmente) las subcategorias, me refiero a las de nivel 3 o 4, ya que se hace muy extenso el menu en menu principal tengo, supermercado, libreria, contacto, etc.. la primera linea.. luego dento de libreria hay , oficina, escolar, escritura. en nivel 3 tengo escritura > lapices, gomas, reglas, etc... hasta aqui todo bien... pero no quiero que se vea mas abajo nivel 4 lapices> mina, pasta, cera, etc. esto desarma el menu y se ve horrible. espero me haya expresado bien .. Link to comment Share on other sites More sharing options...
Sofitec Posted February 5, 2019 Author Share Posted February 5, 2019 bueno me respondo y espero les sirva. en modules/ps_mainmenu editar el archivo ps_mainmenu.php mas o menos en la linea 737 debe aparecer algo asi if (isset($category['children']) && !empty($category['children'])) { $node['children'] = $this->generateCategoriesMenu($category['children'], 1); esa linea la 737 le vamos a añadir: if ( $category['level_depth'] < 3){ $html .= $this->generateCategoriesMenu($category['children'], 1); } quedando finalmente la linea completa de esta forma : if (isset($category['children']) && !empty($category['children'])) if ( $category['level_depth'] < 4){ { $node['children'] = $this->generateCategoriesMenu($category['children'], 1); } si gustan minimizar aun mas el menú. pueden cambiar el valor a 3 o 2 según los gustos. if ( $category['level_depth'] < 4){ { Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now