Hi Bluecat,
The code below is taken from v3.2.1.
/customer/main/product.tpl
Quote:
<tr><td COLSPAN=2></td></tr>
{if $config.General.show_in_stock eq "Y" and $product.distribution eq ""}
<tr>
<TD WIDTH=30%>
{$lng.lbl_quantity}
</td><td nowrap>
{if $product.avail gt 0}
{$product.avail}
{else}
{$lng.txt_no}
{/if}
{$lng.txt_items_available}</td></tr>
{/if}
|
The highlighted variable holds the number of items available, you could replace this with or without a language database txt variable, to say "In Stock" or what ever, when
(when available products are greater than zero), and
could be replaced with "Out of Stock" or what ever you prefer.
Quote:
{$lng.txt_no}
{/if}
{$lng.txt_items_available}
|
you could removed one of these language txt variables, or change
$lng.txt_no in the language dB to
Not and
$lng.txt_items_available to
in Stock
Regards,