|
You can show the stock quantity on the product page by editing:
app/design/frontend/default/default/template/catalog/product/view/type/simple.phtml (for a simple product, other products have their own file)
I just changed the in stock notice to:
<?php echo $this->__('Availability: ' . $_stockQty . ' in stock ') ?>
|