Reputation: 7882
how can I show the stock indicator on Magento product list ?
Thanks a lot.
Upvotes: 0
Views: 4244
Reputation: 5712
To show the quantity of items left in stock use this:
<?php echo (int) Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product)->getQty(); ?>
Upvotes: 3