GreggBazin Posted January 10, 2012 Share Posted January 10, 2012 Bonjour à toutes et à tous, j'ai mis à jour le hook "Dans la même catégorie" afin que les produits qui s'affichent soient les produits d'un même fabricant. Or j'ai bien la vignette et le nom du produit qui s'affiche mais j'aurai aimé faire apparaître le nom de la catégorie parente du produit en question... car plusieurs produits ont le même nom. Suis-je clair ? Voici mon code : {if count($categoryProducts) > 0 && $categoryProducts !== false} <div style="width:490px; border:1px solid #b2ecc2; padding:10px; margin:20px 0px 0px 0px;"> <img src="/img/cms/titre_produits_meme_collection.png" width="320" height="19" alt="Produits dans la même collection" /> <div id="{if count($categoryProducts) > 5}productscategory{else}productscategory_noscroll{/if}"> {if count($categoryProducts) > 5}<a id="productscategory_scroll_left" title="{l s='Previous' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Previous' mod='productscategory'}</a>{/if} <div id="productscategory_list"> <ul {if count($categoryProducts) > 5}style="width: {math equation="width * nbImages" width=107 nbImages=$categoryProducts|@count}px"{/if}> {foreach from=$categoryProducts item='categoryProduct' name=categoryProduct} <li {if count($categoryProducts) < 6}style="width: {math equation="width / nbImages" width=94 nbImages=$categoryProducts|@count}%"{/if}> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'medium')}" alt="{$categoryProduct.name|htmlspecialchars}" /></a><br/> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}"> {$categoryProduct.name|truncate:25:'...'|escape:'htmlall':'UTF-8'} </a> </li> {/foreach} </ul> </div> {if count($categoryProducts) > 5}<a id="productscategory_scroll_right" title="{l s='Next' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Next' mod='productscategory'}</a>{/if} </div> <script type="text/javascript"> $('#productscategory_list').trigger('goto', [{$middlePosition}-3]); </script> </div> {/if} Et donc, à la place de {$categoryProduct.name|truncate:25:'...'|escape:'htmlall':'UTF-8'} j'aurai aimé mettre {$categoryProduct.category|truncate:25:'...'|escape:'htmlall':'UTF-8'} ou quelque chose comme ça mais ca ne fonctionne pas... Merci d'avance pour votre aide et votre temps ! Gregg Link to comment Share on other sites More sharing options...
GreggBazin Posted January 10, 2012 Author Share Posted January 10, 2012 Je me permets de revenir sur ma question ci-dessus En fait, en mettant ce code : {$categoryProduct.name|truncate:35:'...'|escape:'htmlall':'UTF-8'} cela me donne le nom de la catégorie mais avec des tirets entre chaque mot, à la place des espaces. Vous savez comment les supprimer ? Merci 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