Golgo Posted March 31, 2012 Share Posted March 31, 2012 bonjour, Après avoir supprimé la colonne de droite dans mon thème, il s'avère qu'un long nom de produit se voit toujours abrégé dans sa catégorie. exemple ici : http://www.sa-s.be/27-rails-garde-main Où puis-je supprimer ce système de réduction de titre du produit ? Merci d'avance Link to comment Share on other sites More sharing options...
Stéphane Chonez Posted March 31, 2012 Share Posted March 31, 2012 Bonjour, il y a une limitation de caractères sur le titre. c'est limittaion utilise la fonction "Truncate".... donc repérez dans product-list.tpl : <h3>{if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if}<a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></h3> et supprimez le truncate <h3>{if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if}<a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></h3> Link to comment Share on other sites More sharing options...
Golgo Posted April 1, 2012 Author Share Posted April 1, 2012 ok, j'essaye cela ce soir. Merci à tout les deux pour vos réponses. 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