Jump to content

[Résolu] Description catégorie en entier


Recommended Posts

Chercher le fichier category.tpl !

Ensuite allez à la ligne 36 :

 {if Tools::strlen($category->description) > 350}
                <div id="category_description_short">{$description_short}</div>
                <div id="category_description_full" class="unvisible">{$category->description}</div>
                <a href="{$link->getCategoryLink($category->id_category, $category.link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a>
 {else}

Changez la valeur 350 par une valeur plus élevée.

Merci de me tenir au courant-ci cela fonctionne.

Link to comment
Share on other sites

Bonjour;

 

Pour afficher la totalité de la description de catégorie:

Dans fichier category.tpl ligne 59 pas 36

remplacer ce bloc du code:

            {if Tools::strlen($category->description) > 350}
                   <div id="category_description_short" class="rte">{$description_short}</div>
                   <div id="category_description_full" class="unvisible rte">{$category->description}</div>
                   <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a>
            {else}
                   <div class="rte">{$category->description}</div>
            {/if}

Par

           <div class="rte">{$category->description}</div>

 

  • Like 1
Link to comment
Share on other sites

  • 6 months later...

Ligne 17 dans le fichier category.css, on peut enlever color: white; pour la classe .category-name afin que le titre ne s'affiche pas en blanc sur fond blanc (dans le template par défault) puis ligne 6 color: #333333; (par exemple) pour que le texte soit visible.

Edited by jm64500 (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...