In Stock

I mainly got 1 in stock products but some also many. I do not want 1 to be shown but would like to show if available more then say 100 in product details page?

Any simple solution ?

design/themes/THEME/templates/common/product_data.tpl

you can replace

{$product_amount} {__("items")}

with

{if $product_amount > 100}{$product_amount} {__("items")}{else}{__('in_stock')}{/if}

With you its always simple :) thanks