Hello! Is there anyway to show stock levels for the customers viewing a product so they can see how many are left in stock?
thanks
In version 2.1.0, there a checkbox for “Display In stock as a field” in Design > Appearance Settings.
If your version doesn’t have that, edit:
/skins/{YOUR_SKIN}/customer/blocks/product_templates/default_template.tpl
Add the a line like this:
```php
In stock:
{$product.amount}item(s)
```
You can move the line around until it's in the place you want.
So there's the easy, modern CS-Cart way at the hack-a-liscious way if you're using a version without a way to view the number in stock.