Jump to content

Besoin d'aide pour une modif


Recommended Posts

En fait j'ai plusieurs catégories mais les sous catégories n'apparaissent pas, mais les produits apparaissent,
je n'arrive pas a modifier le category.tpl du thème Moon de manière à ce que les sous catégories apparaissent et non les produits.
Voici le category.tpl du theme Moon :


{include file=$tpl_dir./breadcrumb.tpl}
<!-- Left -->

{if $category->active}
{include file=$tpl_dir./errors.tpl}
{if $products}
{include file=$tpl_dir./product-list.tpl products=$products}
{elseif !isset($subcategories)}

{l s='There is no product in this category.'}
{/if}
{else}
{l s='This category is currently unavailable.'}
{/if}

20425_frZbAAwnyhwYVPBWQPdx_t

Link to comment
Share on other sites

Il suffit de reprendre le fichier category.tpl du thème par défaut :

    {if isset($subcategories)}
   <!-- Subcategories -->

{l s='Subcategories'}

       {foreach from=$subcategories item=subcategory}

getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}">
                   {if $subcategory.id_image}
getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" />
                   {else}

                   {/if}



getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}

       {/foreach}




   {/if}

Link to comment
Share on other sites

J'ai rajouté le code du theme d'origine voila ce que ca donne voir l'image en capture, dois je modifier ensuite quelque chose dans le css? de plus quand je retire tous les produits de la catégorie principale plus rien n'apparait

20636_K6kg7MJWV37p0QKoiKmE_t

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...