Dali
Dali

Reputation: 7882

Magento - show the stock indicator on product list

how can I show the stock indicator on Magento product list ?

Thanks a lot.

Upvotes: 0

Views: 4244

Answers (1)

Adam Moss
Adam Moss

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

Related Questions