Jump to content
xt:Commerce Community Forum

Kategoriebild entfernen?


andfra

Recommended Posts

Wo kann ich das Kategoriebild entfernen das es nicht angezeigt wird wenn ich auf der Übersichtsseite der Artikel bin, wo alle Artikel gelistet werden die sich in der Kategorie befinden? Über einen Hinweis wäre ich dankbar, hab schon einiges probiert.

Link to comment
Share on other sites

root/templates/{dein Template}/module/categorie_listing/categorie_listing.html

<td align="right">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_IMAGE}" />{/if}</td>

Hier das rauslöschen was du nicht sehen möchtest.

Aber soll das Categoriebild wo anders angezeigt werden oder warum hast du es angegeben. ?

Link to comment
Share on other sites

hei,

ich glaube du meinst das template:

root/templates/{dein Template}/module/products_listing/products_listing_v1.html

und dann die zeilen:

{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME }" />

<br />

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

<tr>

<td style="border-bottom: 1px solid; border-color: #000000;"> </td>

</tr>

</table>

{/if}

entweder ganz rausnehmen, oder auskommentieren:

<!--

{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME }" />

<br />

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

<tr>

<td style="border-bottom: 1px solid; border-color: #000000;"> </td>

</tr>

</table>

{/if}

-->

vobei das auskommentieren manchmal fehler erzeugt, da die ersetzungen durch smarty trotzdem stattfinden nur nicht angezeigt werden. also besser ganz raus...

Link to comment
Share on other sites

Nur so als Tipp, mit Smarty kommentiert man so aus:

{*

{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME }" />

<br />

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

  <tr>

    <td style="border-bottom: 1px solid; border-color: #000000;"> </td>

  </tr>

</table>

{/if}

*}

MfG Hetfield :cool:

Link to comment
Share on other sites

Nur so als Tipp, mit Smarty kommentiert man so aus:

{*

{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME }" />

<br />

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

  <tr>

    <td style="border-bottom: 1px solid; border-color: #000000;"> </td>

  </tr>

</table>

{/if}

*}

MfG Hetfield :cool:

:rolleyes: jetzt wo du es sagst .. stimmt :)

Link to comment
Share on other sites

Archived

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

×
  • Create New...