tarzanjane Posted May 31, 2011 Share Posted May 31, 2011 Bonjour à tous,Je cherche à faire une chose apparemment simple, mais je ne trouve pas la solution. En fait, mon menu contient 4 catégories principales et chacune d'entre elle contient des sous-catégories.Je voudrais pouvoir assigner une couleur différente à chacune des 4 catégories principales, mais je n'arrive pas à les distinguer dans le menu. En effet, les 4 utilisent simplement la balise .Peut-on ajouter l'id de la catégorie dans le menu? Y'a t-il une autre solution?Merci par avance pour votre aide.Cordialement, Link to comment Share on other sites More sharing options...
MayMo design Posted May 31, 2011 Share Posted May 31, 2011 j'ai un truc plus cool que ça, c'est de mettre automatiquement une class="cat1" ...class="cat2"....class="cat3"...class="cat4"et aprés dans les css tu met pour chaque class les caractéristique que tu veux...seulement un hic, je peux pas t'aider si je peux pas voir le site ou le fichier.tpl du menu.. à toi de voir Link to comment Share on other sites More sharing options...
tarzanjane Posted June 1, 2011 Author Share Posted June 1, 2011 j'ai un truc plus cool que ça, c'est de mettre automatiquement une class="cat1" ...class="cat2"....class="cat3"...class="cat4"et aprés dans les css tu met pour chaque class les caractéristique que tu veux...seulement un hic, je peux pas t'aider si je peux pas voir le site ou le fichier.tpl du menu.. à toi de voir En fait, il s'agit du module d'origine de Prestashop. Voici le code du fichier "blockcategories.tpl" : {* * 2007-2011 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA * @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 6718 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block categories module --> {l s='Categories' mod='blockcategories'} {foreach from=$blockCategTree.children item=child name=blockCategTree} {if $smarty.foreach.blockCategTree.last} {include file="$branche_tpl_path" node=$child last='true'} {else} {include file="$branche_tpl_path" node=$child} {/if} {/foreach} {* Javascript moved here to fix bug #PSCFI-151 *} [removed] // <![CDATA[ // we hide the tree only if JavaScript is activated $('div#categories_block_left ul.dhtml').hide(); // ]]> [removed] <!-- /Block categories module --> et celui de "category-tree-branch.tpl" : > {* * 2007-2011 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA * @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 6594 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {$node.name|escape:html:'UTF-8'} {if $node.children|@count > 0} </pre> <ul> {foreach from=$node.children item=child name=categoryTreeBranch} {if isset($smarty.foreach.categoryTreeBranch) && $smarty.foreach.categoryTreeBranch.last} {include file="$branche_tpl_path" node=$child last='true'} {else} {include file="$branche_tpl_path" node=$child last='false'} {/if} {/foreach} </ul> <br> {/if}<br Le problème, c'est que je ne suis pas très calé avec l'écriture de SMARTY.Merci pour ton aide Link to comment Share on other sites More sharing options...
Maury Girard Posted June 1, 2011 Share Posted June 1, 2011 Bonjour tarzanjanePourriez vous nous envoyer le ou les fichier .tpl à renommer en .txt en pièce jointe ?Cela sera plus simple car parfois le forum ne prend pas en compte certains code et le renomme en [Removed]C'est du vécu Cordialement, Link to comment Share on other sites More sharing options...
tarzanjane Posted June 1, 2011 Author Share Posted June 1, 2011 Voici les fichiers en version .txt en pièce jointe : blockcategories.txt category-tree-branch.txt Link to comment Share on other sites More sharing options...
MayMo design Posted June 1, 2011 Share Posted June 1, 2011 category-tree-branch.tpl > {$node.name|escape:html:'UTF-8'} {if $node.children|@count > 0} </pre> <ul> {foreach from=$node.children item=child name=categoryTreeBranch} {if isset($smarty.foreach.categoryTreeBranch) && $smarty.foreach.categoryTreeBranch.last} {include file="$branche_tpl_path" node=$child last='true'} {else} {include file="$branche_tpl_path" node=$child last='false'} {/if} {/foreach} </ul> <br> {/if}<br><br Link to comment Share on other sites More sharing options...
tarzanjane Posted June 1, 2011 Author Share Posted June 1, 2011 Merci pour ton aide, ça m'aide à avancer. Par contre, je vais être (peut-être trop) pointilleux, mais y'a t-il moyen de numéroter en fonction des niveaux. En fait, seules les catégories de niveau 1 m'intéressent?J'ai vu, dans la base de donnée, qu'il y a une valeur qui correspond au niveau (level_depth). Comment puis-je la récupérer pour l'utiliser avec SMARTY?Merci Link to comment Share on other sites More sharing options...
tarzanjane Posted June 24, 2011 Author Share Posted June 24, 2011 Je reviens vers vous car je n'ai pour le moment pas de réelle solution à mon problème. En effet, le système proposé par MayMo Design est très utile mais si je change l'ordre des catégories ou si j'ajoute une catégorie, les chiffres changent et le résultat visuel aussi.Y'a t-il un moyen de mettre l'ID de la catégorie dans le menu?Merci par avance Link to comment Share on other sites More sharing options...
dfede Posted June 24, 2011 Share Posted June 24, 2011 une table catcolor avec id, id_cat, (color ou class)un module qui gère sa,un assign dans le php une condition dans le tplet c'est bon ^^et sa donne ou mém 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