Jump to content
xt:Commerce Community Forum

Kategorienauflistung abschalten?


jepp

Recommended Posts

Moin liebe xt-commerce-Fans:

Wie kann man in den Kategorien, die leeren Kategorienfotos abschalten?

Defination: Sofern eine Hauptkategorie Unterkategorien hat, dann werden diese noch zusätzlich in der jeweiligen Hauptkategorie gelistet, das sieht natürlich nicht besonders schön aus wenn man viele Unterkategorien hat!

Kann mir jemand bezüglich meiner obigen Fragen weiterhelfen? ;)

Link to comment
Share on other sites

Ich frage aber trotzdem lieber noch einmnal nach, ich die Datei categorie_listing.html tatsächlich richtig geändert habe:

Kompletter Code der categorie_listing.html:

<div id="categorie-listing">
{if $categories_heading_title}
<h1>{$categories_heading_title}</h1>
{else}
<h1>{$categories_name}</h1>
{/if}
{if $categories_description}
<div id="categorie-description">{$categories_description}</div>
{/if}

{if $categorie_listing !=''}
<p class="headline">{txt key=TEXT_HEADING_MORE_CATEGORIES}</p>
<div class="row">
{foreach item=module_data from=$categorie_listing}
<div class="column four">
<div class="box categorie box-hover">
{if $module_data.categories_image}
<span class="image"><a href="{$module_data.categories_link}">{img img=$module_data.categories_image type=m_category_thumb class=productImageBorder alt=$module_data.categories_name|escape:"html"}</a></span>
{else}
<a href="{$module_data.categories_link}"><span class="no-image"></span></a>
{/if}
<span class="name bold"><a href="{$module_data.categories_link}">{$module_data.categories_name}</a></span>
</div><!-- .categorie -->
</div><!-- .column .four -->
{/foreach}
</div><!-- .row -->
{/if}
</div><!-- #categorie-listing -->[/PHP]

Von mir entfernter Code:

[PHP]{if $categorie_listing !=''}
<p class="headline">{txt key=TEXT_HEADING_MORE_CATEGORIES}</p>
<div class="row">
{foreach item=module_data from=$categorie_listing}
<div class="column four">
<div class="box categorie box-hover">
{if $module_data.categories_image}
<span class="image"><a href="{$module_data.categories_link}">{img img=$module_data.categories_image type=m_category_thumb class=productImageBorder alt=$module_data.categories_name|escape:"html"}</a></span>
{else}
<a href="{$module_data.categories_link}"><span class="no-image"></span></a>
{/if}
<span class="name bold"><a href="{$module_data.categories_link}">{$module_data.categories_name}</a></span>
</div><!-- .categorie -->
</div><!-- .column .four -->
{/foreach}
</div><!-- .row -->
{/if}
[/PHP]

Habe ich den Code so passend und vor allem richtig für mein Anliegen entfernt? ;)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...