dreamweaver the code is this
<!--<?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?>-->
<!--bof Quantité Level-->
<?php }
if ($flag_show_product_info_quantity == 1) { // test si Flag=1
$stock_title = STOCK_LEVEL_TITLE;
$stock_image_title = $products_quantity . TEXT_PRODUCT_QUANTITY;
?>
<li><li>
<table border="1" cellspacing="1" cellpadding="2">
<caption><strong><?php echo $stock_title ?></strong></caption>
<?php
// test sur les quantités
if ($products_quantity <=0) {
$stock_txt = STOCK_LEVEL_NODISPO_ALT;
$stock_image =DIR_WS_TEMPLATE_IMAGES . STOCK_LEVEL_IMAGE_NODISPO;
$stock_image_alt = STOCK_LEVEL_NODISPO_ALT;
} elseif($products_quantity <=5) {
$stock_txt = STOCK_LEVEL_PEUDISPO_ALT;
$stock_image =DIR_WS_TEMPLATE_IMAGES . STOCK_LEVEL_IMAGE_PEUDISPO;
$stock_image_alt = STOCK_LEVEL_PEUDISPO_ALT;
} elseif($products_quantity >5) {
$stock_txt = STOCK_LEVEL_DISPO_ALT;
$stock_image =DIR_WS_TEMPLATE_IMAGES . STOCK_LEVEL_IMAGE_DISPO;
$stock_image_alt = STOCK_LEVEL_DISPO_ALT;
} elseif($products_quantity <0) {
$stock_txt = STOCK_LEVEL_ORDER_ALT;
$stock_image =DIR_WS_TEMPLATE_IMAGES . STOCK_LEVEL_IMAGE_ORDER;
$stock_image_alt = STOCK_LEVEL_ORDER_ALT;
}// test quantité
?>
<tr>
<td><?php echo $stock_txt ?><br><?php echo $stock_image_title ?></td>
<td>
<?php
echo '<img src='. $stock_image . ' alt='. $stock_image_alt .' title="'. $stock_image_title .'">' ;
?>
</td>
</tr>
</table>
<?php } // fin du test si Flag=1
?>
<!--Eof Quantité Level-->
if I insert that code everything became blank...
I've added that code non in the template_default tpl_product_display_info.php but I've edited a copy of this file in my custom template...