snoopy53881 Posted February 7, 2015 Report Share Posted February 7, 2015 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 Link to comment Share on other sites More sharing options...
five-up Posted February 7, 2015 Report Share Posted February 7, 2015 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 More sharing options...
Amrit Posted February 7, 2015 Report Share Posted February 7, 2015 ... oder aber Du legst eine weitere product.html an (z.B. product_ohne.html) bei der die Ampel auskommentiert ist. Dann das jeweilige Template den Artikeln zuweisen. Grüße Link to comment Share on other sites More sharing options...
snoopy53881 Posted February 7, 2015 Author Report Share Posted February 7, 2015 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.