Jump to content
xt:Commerce Community Forum

Lagerampel nur bei einzelnen Artikeln möglich?


snoopy53881

Recommended Posts

Hallo zusammen,

ist es und wenn ja, wie, möglich, dass man die Lagerampel nur bei einzelnen/ausgewählten Artikeln im Frontend anzeigen lässt?

Vielen Dank für Eure Mithilfe!

Gruß

Snoopy

Jein,

also nicht direkt, du könntest in deinem template in der product.html eine Bedingung hinterlegen bspw. so :

aus


{if $stock_image}

<p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

<p class="product-stock-name">{$stock_image.name}</p>

{/if}

machst du

{if $stock_image && $products_average_quantity neq 0}

<p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

<p class="product-stock-name">{$stock_image.name}</p>

{/if}

Wenn du einen Artikel nun im Backend mit durchschnittlicher Lagerbestand 0 hinterlegst, wird die Ampel nicht mehr angezeigt.

Link to comment
Share on other sites

Jein,

also nicht direkt, du könntest in deinem template in der product.html eine Bedingung hinterlegen bspw. so :

aus


{if $stock_image}

<p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

<p class="product-stock-name">{$stock_image.name}</p>

{/if}

machst du

{if $stock_image && $products_average_quantity neq 0}

<p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

<p class="product-stock-name">{$stock_image.name}</p>

{/if}

Wenn du einen Artikel nun im Backend mit durchschnittlicher Lagerbestand 0 hinterlegst, wird die Ampel nicht mehr angezeigt.

Hallo five-up,

super....es klappt :-) Vielen Dank!

Link to comment
Share on other sites

Archived

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

×
  • Create New...