Jump to content
xt:Commerce Community Forum

Kategoriebild in Unterkategorie


hardwarehexe

Recommended Posts

hallo,

ich hoffe mal, dass ich mit meinem Problem nicht alleine bin.

Und zwar möchte ich bei meinem Shop in der Unterkategorie war in der Navigation die Schrift der Unterkategorie haben, aber wenn diese dann in der Mitte angezeigt werden, hätte ich gerne ein Bild anstatt der Schrift.

Ich habe schon versucht ein Bild in der Unterkategorie hochzuladen, in der Hoffnung, dass dieses auch angezeigt wird. Jedoch ist dies nicht der Fall. Es wird kein Bild für die Unterkategorie angezeigt, sondern es bleibt bei der Schrift.

Habt Ihr vielleicht eine Lösungsmöglichkeit für mich wie ich dies realisieren kann?

mfg

marcus

Link to comment
Share on other sites

hi,

das Kategorie-Listing ändern und so was ähnliches einfügen ( hängt von Deinem Template ab, ob in divs oder Tabellen ):

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

Die Zeile mit {$module_data.categories_name} kannst ja dann weglassen ( Bild hat den Link ja auch )

Grüsse

Link to comment
Share on other sites

ja, hab das aus dem Kategorienlisting 3spaltig mit Bildern hier aus dem Forum im Standard-Template benutzt;

gleich noch das ganze Listing zu Deiner Verwendung:

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

{page name=xt_new_products type=user order_by='rand()' tpl_type='product_listing'}

{/if}

viel Spass damit !

Link to comment
Share on other sites

Archived

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

×
  • Create New...