Jump to content
xt:Commerce Community Forum

Kategorieübersicht categorie_listing.html


StageUnited

Recommended Posts

So nächstes Problem ;)

Also ich habe nun mal einwenig gespielt und irgendwie sieht die Kategorieüberischt komisch aus *g*

Öffne ch eine Kategorie werden mir die Unterkategorien nur als Textlink angezeigt... ist es möglich dort vllt. den Name der Unterkategorie und das Kategoriebild der Unterkategorie anzeigen zu lassen?

Danke schonmal für die Hilfe!

Link to comment
Share on other sites

hi,

was heisst hier Textlink ? Normal wird doch der Name der Unterkategorie angezeigt .

und wieder mal ein Zitat: 3-spaltiges Listing der Unterkategorien inkl. Bilder ( wie schon so oft geposted ) :

<h1>{$categories_name}</h1>

{if $categories_image}{img img=$categories_image type=m_info}{/if}

{if $categories_description}<p>{$categories_description}</p>{/if}

{if $categorie_listing !=''}

<h3>{txt key=TEXT_HEADING_MORE_CATEGORIES}</h3>

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr> {foreach name=aussen item=module_data from=$categorie_listing}

{php}

$col++;

{/php}

<td class="main"><table width="100%" border="0" cellpadding="0" cellspacing="4">

<tr>

<td align="center" >{if $module_data.categories_image}<a href="{$module_data.categories_link}">{img img=$module_data.categories_image type=m_thumb}</a>{/if}</td>

</tr>

<tr>

<td align="center" ><a href="{$module_data.categories_link}">{$module_data.categories_name}</a></td>

</tr>

</table>

</td>

{assign var=maxcol value=$smarty.const._STORE_MAX_CATEGORIES_PER_ROW}

{php}

$maxcol=$this->get_template_vars('maxcol');

if ($col>=$maxcol) {

$col=0;

echo '</tr><tr>';

}

{/php}

{/foreach} </tr>

</table>

{/if}

kann man einiges rauslesen und selber machen ...

Grüsse

Link to comment
Share on other sites

Archived

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

×
  • Create New...