Lilounette77 Posted July 6, 2011 Share Posted July 6, 2011 Coucou :cheese: J'ai fait un module avec un menu horizontal.Dans l'un des onglets, je souhaite faire un sous menu affichant les catégories.Ce qui me donnerait un truc du genre. {foreach}...{/foreach}Comment faire ? :gulp: J'ai essayé de bidouiller mon .php pour faire une recherche dans la BDD mais... Smarty n'étant pas encore mon ami lol, je n'ai réussi à rien. Qui peut m'aider ?! :cheese: Merciiiii ! Link to comment Share on other sites More sharing options...
DevNet Posted July 6, 2011 Share Posted July 6, 2011 Bonjour,Je pense que toutes les sources du module blockcategories peuvent vous être très utiles.Bien cordialement Link to comment Share on other sites More sharing options...
Lilounette77 Posted July 6, 2011 Author Share Posted July 6, 2011 J'ai déjà regardé mais je n'y arrive pas :-S Link to comment Share on other sites More sharing options...
Lilounette77 Posted July 6, 2011 Author Share Posted July 6, 2011 J'ai essayé ça mais ça ne fonctionne pas... d'où vient le problème ? :-S public function hooktop($param){global $smarty, $cookie;$lang = intval($cookie->id_lang);$customer = intval($cookie->id_customer);$cat = Db::getInstance()->ExecuteS('SELECT cp.`id_category`, cl.`name`FROM `'._DB_PREFIX_.'category_product` cp INNER JOIN `'._DB_PREFIX_.'category` c ON (c.`id_category` = cp.`id_category`)INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON (cl.`id_category` = cp.`id_category` AND cl.`id_lang` = '.$lang.')INNER JOIN `'._DB_PREFIX_.'category_group` cg ON (cg.`id_category` = cp.`id_category`)INNER JOIN `'._DB_PREFIX_.'customer_group` ctg ON (ctg.`id_group` = cg.`id_group` AND ctg.`id_customer` = '.$customer.')WHERE cl.`id_lang` = '.$lang.' AND c.`active` = 1');$smarty->assign('categories_prod',$cat);$smarty->assign('this_path', $this->_path); return $this->display(__FILE__, 'blockmenu.tpl');} {foreach from=$categories_prod item=cat}{$cat.name|escape:'htmlall':'UTF-8'}{/foreach} Link to comment Share on other sites More sharing options...
Lilounette77 Posted July 6, 2011 Author Share Posted July 6, 2011 C'est bon j'ai trouvé. Merci quand même Link to comment Share on other sites More sharing options...
mtconseils Posted July 27, 2011 Share Posted July 27, 2011 Bonjour Je suis interessé par ta solution, peux tu la partager ? Merci d'avance Mickael Link to comment Share on other sites More sharing options...
daniel3000 Posted July 28, 2011 Share Posted July 28, 2011 Bonsoir, moi aussi j'aimerais bien connaitre la solution de l'énigme, mais en attendant Lilounette , on peut toujours se brancher sur le menu horizontal de base de Julien Breux, assez efficace et fiable du point de vue de son fonctionnement (choix de liens, menus sous menus), et lui amener une présentation personnalisée. Cordialement. Daniel Link to comment Share on other sites More sharing options...
missfx Posted July 29, 2011 Share Posted July 29, 2011 http://www.julien-breux.com/2009/05/22/prestashop-lister-les-sous-categories/ 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